From 730f6d082382f06a640d887ae261e19a2f3bf547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 16 Nov 2009 03:06:13 +0000 Subject: [PATCH] class animation: added scrollbar property filtering back in to prevent an error in IE. --- ui/jquery.effects.core.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/jquery.effects.core.js b/ui/jquery.effects.core.js index 5796edd73..45f61212c 100644 --- a/ui/jquery.effects.core.js +++ b/ui/jquery.effects.core.js @@ -199,9 +199,8 @@ function filterStyles(styles) { $.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)))