Fixed the giant negative number issue that Opera was having.
[jquery.git] / src / fx / fx.js
index 3e8885d..72bfbf8 100644 (file)
@@ -415,7 +415,8 @@ jQuery.extend({
        
                // Get the current size
                z.cur = function(){
-                       return parseFloat( jQuery.curCSS(z.el, prop) ) || z.max();
+                       var r = parseFloat( jQuery.curCSS(z.el, prop) );
+                       return r && r > -10000 ? r : z.max();
                };
        
                // Start an animation from one number to another