r3455 committed - class animation: added scrollbar property filtering back in to prevent...

r3455 committed - class animation: added scrollbar property filtering back in to prevent...


Revision: 3455
Author: scott.gonzalez
Date: Sun Nov 15 19:06:13 2009
Log: class animation: added scrollbar property filtering back in to prevent
an error in IE.
http://code.google.com/p/jquery-ui/source/detail?r=3455
Modified:
/trunk/ui/jquery.effects.core.js
=======================================
--- /trunk/ui/jquery.effects.core.js    Sun Nov 15 15:53:40 2009
+++ /trunk/ui/jquery.effects.core.js    Sun Nov 15 19:06:13 2009
@@ -199,9 +199,8 @@
            $.isFunction(value) ||
            // shorthand styles that need to be expanded
            name in shorthandStyles ||
-            // ignore Mozilla specific styles (Moz and length)
            // ignore scrollbars (break in IE)
-//            (/(Moz)|(length)|(scrollbar)/).test(name) ||
+            (/scrollbar/).test(name) ||
            // only colors or values that can be converted to numbers
            (!(/color/i).test(name) && isNaN(parseFloat(value)))