aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.effects.core.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/jquery.effects.core.js')
-rw-r--r--ui/jquery.effects.core.js3
1 files changed, 1 insertions, 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)))