diff options
author | Trevor Elliott <trevor@galois.com> | 2013-05-21 13:56:40 -0700 |
---|---|---|
committer | Trevor Elliott <trevor@galois.com> | 2013-05-21 13:56:40 -0700 |
commit | 0d2685932e23b3ae37bbcc50fea756f22356207a (patch) | |
tree | 9e665bf2ebd10c44b5cbf4877e70b71741838173 /contexts/data/fiveui | |
parent | 0b581fd0d3a593f0706be4a303c86176d1f2fda7 (diff) |
More goog removal
Diffstat (limited to 'contexts/data/fiveui')
-rw-r--r-- | contexts/data/fiveui/entry.js | 2 | ||||
-rw-r--r-- | contexts/data/fiveui/options.js | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/contexts/data/fiveui/entry.js b/contexts/data/fiveui/entry.js index 610bcae..fcc65e5 100644 --- a/contexts/data/fiveui/entry.js +++ b/contexts/data/fiveui/entry.js @@ -72,7 +72,7 @@ _.extend(fiveui.Entry.prototype, { * @return {void} */ append: function(e) { - this._e.append(e); + e.append(this._e); }, /** diff --git a/contexts/data/fiveui/options.js b/contexts/data/fiveui/options.js index 50c9502..8558ca2 100644 --- a/contexts/data/fiveui/options.js +++ b/contexts/data/fiveui/options.js @@ -290,13 +290,13 @@ fiveui.options.init = function(port) { // register the rule set with the drop down var rsDropDown = jQuery(_.template( '<option value="<%= id %>"><%= name %></option>', - ruleSet); + ruleSet)); - gdom.appendChild(gdom.getElement('urlPatRuleSetId'), rsDropDown); + jQuery('#urlPatRuleSetId').append(rsDropDown); // create the rule set list entry var entry = new fiveui.RuleSetEntry(ruleSet); - entry.append(gdom.getElement('ruleSetEntries')); + entry.append(jQuery('#ruleSetEntries')); entry.on('remove', function() { remRuleSet(ruleSet.id); |