diff options
author | alecpl <alec@alec.pl> | 2011-09-19 06:43:57 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-09-19 06:43:57 +0000 |
commit | b578abb9f94fa1d7dc8ce2ee94e35fa074d51ce4 (patch) | |
tree | 7394a6739c0ad1fa2ed1de60b17c20133072c3f6 /program/js | |
parent | 85993b24f8860d7674414fce18acaa8bcef359a5 (diff) |
- Applied fixes from trunk up to r5232
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/googiespell.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/js/googiespell.js b/program/js/googiespell.js index 18ed6a2b2..de8890f5f 100644 --- a/program/js/googiespell.js +++ b/program/js/googiespell.js @@ -155,8 +155,8 @@ this.appendNewMenuItem = function(name, call_back_fn, checker) { this.extra_menu_items.push([name, call_back_fn, checker]); }; -this.appendCustomMenuBuilder = function(eval, builder) { - this.custom_menu_builder.push([eval, builder]); +this.appendCustomMenuBuilder = function(eval_fn, builder) { + this.custom_menu_builder.push([eval_fn, builder]); }; this.setFocus = function() { @@ -409,7 +409,7 @@ this.showErrorWindow = function(elm, id) { var changed = false; for (var k=0; k<this.custom_menu_builder.length; k++) { var eb = this.custom_menu_builder[k]; - if(eb[0]((this.results[id]))){ + if (eb[0](this.results[id])) { changed = eb[1](this, list, elm); break; } |