diff options
Diffstat (limited to 'ui/effects.core.js')
-rw-r--r-- | ui/effects.core.js | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ui/effects.core.js b/ui/effects.core.js index 080339a11..eb448e71e 100644 --- a/ui/effects.core.js +++ b/ui/effects.core.js @@ -7,11 +7,9 @@ * * http://docs.jquery.com/UI/Effects/ */ -;(function($) { +;jQuery.effects || (function($) { -$.effects = $.effects || {}; //Add the 'effects' scope - -$.extend($.effects, { +$.effects = { version: "@VERSION", // Saves a set of properties in a data storage @@ -130,7 +128,7 @@ $.extend($.effects, { }); } -}); +}; function _normalizeArguments(a, m) { |