mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
All non-var modules should not indent in their AMD wrappers (just for prettier builds). No functionality changes.
This commit is contained in:
parent
3b53b75160
commit
cd4a9cd7fa
@ -5,4 +5,5 @@ define([
|
||||
jQuery.parseJSON = JSON.parse;
|
||||
|
||||
return jQuery.parseJSON;
|
||||
|
||||
});
|
||||
|
@ -1,6 +1,7 @@
|
||||
define([
|
||||
"../core"
|
||||
], function( jQuery ) {
|
||||
|
||||
// Cross-browser xml parsing
|
||||
jQuery.parseXML = function( data ) {
|
||||
var xml, tmp;
|
||||
@ -23,4 +24,5 @@ define([
|
||||
};
|
||||
|
||||
return jQuery.parseXML;
|
||||
|
||||
});
|
||||
|
@ -5,6 +5,7 @@ define([
|
||||
"./attributes/classes",
|
||||
"./attributes/val"
|
||||
], function( jQuery ) {
|
||||
|
||||
// Return jQuery for attributes-only inclusion
|
||||
return jQuery;
|
||||
});
|
||||
|
@ -1,6 +1,7 @@
|
||||
define([
|
||||
"../core"
|
||||
], function( jQuery ) {
|
||||
|
||||
// Multifunctional method to get and set values of a collection
|
||||
// The value/s can optionally be executed if it's a function
|
||||
var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
|
||||
@ -55,4 +56,5 @@ define([
|
||||
};
|
||||
|
||||
return access;
|
||||
|
||||
});
|
||||
|
@ -35,4 +35,5 @@ define([
|
||||
};
|
||||
|
||||
return jQuery.parseHTML;
|
||||
|
||||
});
|
||||
|
@ -24,4 +24,5 @@ define([
|
||||
};
|
||||
|
||||
return jQuery.swap;
|
||||
|
||||
});
|
||||
|
@ -3,9 +3,11 @@ define([
|
||||
"../selector",
|
||||
"../effects"
|
||||
], function( jQuery ) {
|
||||
|
||||
jQuery.expr.filters.animated = function( elem ) {
|
||||
return jQuery.grep(jQuery.timers, function( fn ) {
|
||||
return elem === fn.elem;
|
||||
}).length;
|
||||
};
|
||||
|
||||
});
|
||||
|
@ -1,6 +1,7 @@
|
||||
define([
|
||||
"../ajax"
|
||||
], function( jQuery ) {
|
||||
|
||||
jQuery._evalUrl = function( url ) {
|
||||
return jQuery.ajax({
|
||||
url: url,
|
||||
@ -13,4 +14,5 @@ define([
|
||||
};
|
||||
|
||||
return jQuery._evalUrl;
|
||||
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user