mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Always return jQuery in modules that can be included separately
This commit is contained in:
parent
99c123b159
commit
b534ee2ccf
@ -1,6 +1,10 @@
|
||||
define([
|
||||
"./core",
|
||||
"./attributes/attr",
|
||||
"./attributes/prop",
|
||||
"./attributes/classes",
|
||||
"./attributes/val"
|
||||
]);
|
||||
], function( jQuery ) {
|
||||
// Return jQuery for attributes-only inclusion
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -201,4 +201,5 @@ jQuery.Callbacks = function( options ) {
|
||||
return self;
|
||||
};
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -529,4 +529,5 @@ jQuery.each({
|
||||
}
|
||||
});
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -171,4 +171,5 @@ function dataAttr( elem, key, data ) {
|
||||
return data;
|
||||
}
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -144,4 +144,6 @@ jQuery.extend({
|
||||
return deferred.promise();
|
||||
}
|
||||
});
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -43,4 +43,6 @@ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
||||
};
|
||||
});
|
||||
});
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
2
src/effects.js
vendored
2
src/effects.js
vendored
@ -627,5 +627,5 @@ jQuery.fx.speeds = {
|
||||
_default: 400
|
||||
};
|
||||
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -844,4 +844,5 @@ jQuery.fn.extend({
|
||||
}
|
||||
});
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -580,4 +580,6 @@ function fixInput( src, dest ) {
|
||||
dest.defaultValue = src.defaultValue;
|
||||
}
|
||||
}
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -178,4 +178,5 @@ jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( me
|
||||
};
|
||||
});
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -138,4 +138,5 @@ jQuery.fn.extend({
|
||||
}
|
||||
});
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -104,4 +104,6 @@ function buildParams( prefix, obj, traditional, add ) {
|
||||
add( prefix, obj );
|
||||
}
|
||||
}
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -286,4 +286,6 @@ function winnow( elements, qualifier, not ) {
|
||||
return ( indexOf.call( qualifier, elem ) >= 0 ) !== not;
|
||||
});
|
||||
}
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -71,4 +71,6 @@ jQuery.fn.extend({
|
||||
}).end();
|
||||
}
|
||||
});
|
||||
|
||||
return jQuery;
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user