r948 - trunk/ui

r948 - trunk/ui


Author: scott.gonzalez
Date: Sun Nov 16 17:16:34 2008
New Revision: 948
Modified:
trunk/ui/ui.progressbar.js
Log:
Progressbar: Removed references to jQuery for compatibility
with .noConflict().
Modified: trunk/ui/ui.progressbar.js
==============================================================================
--- trunk/ui/ui.progressbar.js    (original)
+++ trunk/ui/ui.progressbar.js    Sun Nov 16 17:16:34 2008
@@ -92,7 +92,7 @@
                        self._animate();
                    }
                    else {
-                        delete jQuery.easing[self.identifier];
+                        delete $.easing[self.identifier];
                    }
                }
            }
@@ -107,7 +107,7 @@
            .removeData("progressbar").unbind(".progressbar")
            .find('.ui-progressbar-wrap').remove();
        
-        delete jQuery.easing[this.identifier];
+        delete $.easing[this.identifier];
    },
    disable: function() {
@@ -151,7 +151,7 @@
            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 @@
        this.textElement.add(this.textBg).html(text);
    },
    
-    ui: function(event) {
+    ui: function() {
        return {
            identifier: this.identifier,
            options: this.options,