diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-11-17 01:16:34 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-11-17 01:16:34 +0000 |
commit | 45721d461e2e8452909989ff33d12b237c5b7cb2 (patch) | |
tree | 95b0b27127700271c0223d8b6007c40814d24548 /ui | |
parent | 11a81ac9800927485903cc34ff855d3be07dbe9f (diff) | |
download | jquery-ui-45721d461e2e8452909989ff33d12b237c5b7cb2.tar.gz jquery-ui-45721d461e2e8452909989ff33d12b237c5b7cb2.zip |
Progressbar: Removed references to jQuery for compatibility with .noConflict().
Diffstat (limited to 'ui')
-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 6f78c3935..e8137a193 100644 --- a/ui/ui.progressbar.js +++ b/ui/ui.progressbar.js @@ -92,7 +92,7 @@ $.widget("ui.progressbar", { self._animate(); } else { - delete jQuery.easing[self.identifier]; + delete $.easing[self.identifier]; } } } @@ -107,7 +107,7 @@ $.widget("ui.progressbar", { .removeData("progressbar").unbind(".progressbar") .find('.ui-progressbar-wrap').remove(); - delete jQuery.easing[this.identifier]; + delete $.easing[this.identifier]; }, disable: function() { @@ -151,7 +151,7 @@ $.widget("ui.progressbar", { return; } - jQuery.easing[this.identifier] = function (x, t, b, c, d) { + $.easing[this.identifier] = function (x, t, b, c, d) { var inc = options.increment, width = options.width, step = ((inc > width ? width : inc)/width), @@ -191,7 +191,7 @@ $.widget("ui.progressbar", { this.textElement.add(this.textBg).html(text); }, - ui: function(event) { + ui: function() { return { identifier: this.identifier, options: this.options, |