diff options
author | Richard Worth <rdworth@gmail.com> | 2008-11-14 03:00:16 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-11-14 03:00:16 +0000 |
commit | 7ea535fa1df43e8259ab9987a0e8e08866cfb1f5 (patch) | |
tree | de1237434696e0f094e2cfb35d7fd5880b8a72bb /ui/ui.progressbar.js | |
parent | ed4f58c6d3c914baafaf07ab1d168e6c199b8693 (diff) | |
download | jquery-ui-7ea535fa1df43e8259ab9987a0e8e08866cfb1f5.tar.gz jquery-ui-7ea535fa1df43e8259ab9987a0e8e08866cfb1f5.zip |
fixed #3578 - ALL CODE: e, ui should be changed to event, ui
Diffstat (limited to 'ui/ui.progressbar.js')
-rw-r--r-- | ui/ui.progressbar.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/ui.progressbar.js b/ui/ui.progressbar.js index 16b7b8967..880dbc403 100644 --- a/ui/ui.progressbar.js +++ b/ui/ui.progressbar.js @@ -86,9 +86,9 @@ $.widget("ui.progressbar", { ); }, - _propagate: function(n,e) { - $.ui.plugin.call(this, n, [e, this.ui()]); - this.element.triggerHandler(n == "progressbar" ? n : ["progressbar", n].join(""), [e, this.ui()], this.options[n]); + _propagate: function(n, event) { + $.ui.plugin.call(this, n, [event, this.ui()]); + this.element.triggerHandler(n == "progressbar" ? n : ["progressbar", n].join(""), [event, this.ui()], this.options[n]); }, destroy: function() { @@ -186,7 +186,7 @@ $.widget("ui.progressbar", { this.textBg.html(text); }, - ui: function(e) { + ui: function(event) { return { identifier: this.identifier, options: this.options, |