We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ba4088 commit 16c0c8fCopy full SHA for 16c0c8f
ui/effects.core.js
@@ -7,11 +7,9 @@
7
*
8
* http://docs.jquery.com/UI/Effects/
9
*/
10
-;(function($) {
+;jQuery.effects || (function($) {
11
12
-$.effects = $.effects || {}; //Add the 'effects' scope
13
-
14
-$.extend($.effects, {
+$.effects = {
15
version: "@VERSION",
16
17
// Saves a set of properties in a data storage
@@ -130,7 +128,7 @@ $.extend($.effects, {
130
128
131
129
});
132
}
133
-});
+};
134
135
136
function _normalizeArguments(a, m) {
ui/ui.core.js
@@ -7,7 +7,7 @@
* http://docs.jquery.com/UI
+;jQuery.ui || (function($) {
var _remove = $.fn.remove,
isFF2 = $.browser.mozilla && (parseFloat($.browser.version) < 1.9);
0 commit comments