diff options
-rw-r--r-- | ui/jquery.effects.core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.effects.core.js b/ui/jquery.effects.core.js index 7656ff41a..2d0c873d4 100644 --- a/ui/jquery.effects.core.js +++ b/ui/jquery.effects.core.js @@ -418,7 +418,7 @@ function _normalizeArguments(effect, options, speed, callback) { speed = null; options = {}; } - if (typeof options == 'number') { + if (typeof options == 'number' || $.fx.speeds[options]) { callback = speed; speed = options; options = {}; |