Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
All non-var modules should not indent in their AMD wrappers (just for…
… prettier builds). No functionality changes.
- Loading branch information
Showing
8 changed files
with
143 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
define([ | ||
"../core" | ||
], function( jQuery ) { | ||
// Cross-browser xml parsing | ||
jQuery.parseXML = function( data ) { | ||
var xml, tmp; | ||
if ( !data || typeof data !== "string" ) { | ||
return null; | ||
} | ||
|
||
// Support: IE9 | ||
try { | ||
tmp = new DOMParser(); | ||
xml = tmp.parseFromString( data , "text/xml" ); | ||
} catch ( e ) { | ||
xml = undefined; | ||
} | ||
// Cross-browser xml parsing | ||
jQuery.parseXML = function( data ) { | ||
var xml, tmp; | ||
if ( !data || typeof data !== "string" ) { | ||
return null; | ||
} | ||
|
||
if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { | ||
jQuery.error( "Invalid XML: " + data ); | ||
} | ||
return xml; | ||
}; | ||
// Support: IE9 | ||
try { | ||
tmp = new DOMParser(); | ||
xml = tmp.parseFromString( data , "text/xml" ); | ||
} catch ( e ) { | ||
xml = undefined; | ||
} | ||
|
||
if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { | ||
jQuery.error( "Invalid XML: " + data ); | ||
} | ||
return xml; | ||
}; | ||
|
||
return jQuery.parseXML; | ||
|
||
return jQuery.parseXML; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,60 @@ | ||
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 ) { | ||
var i = 0, | ||
length = elems.length, | ||
bulk = key == null; | ||
|
||
// Sets many values | ||
if ( jQuery.type( key ) === "object" ) { | ||
chainable = true; | ||
for ( i in key ) { | ||
jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); | ||
} | ||
|
||
// Sets one value | ||
} else if ( value !== undefined ) { | ||
chainable = true; | ||
// 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 ) { | ||
var i = 0, | ||
length = elems.length, | ||
bulk = key == null; | ||
|
||
// Sets many values | ||
if ( jQuery.type( key ) === "object" ) { | ||
chainable = true; | ||
for ( i in key ) { | ||
jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); | ||
} | ||
|
||
if ( !jQuery.isFunction( value ) ) { | ||
raw = true; | ||
} | ||
// Sets one value | ||
} else if ( value !== undefined ) { | ||
chainable = true; | ||
|
||
if ( bulk ) { | ||
// Bulk operations run against the entire set | ||
if ( raw ) { | ||
fn.call( elems, value ); | ||
fn = null; | ||
|
||
// ...except when executing function values | ||
} else { | ||
bulk = fn; | ||
fn = function( elem, key, value ) { | ||
return bulk.call( jQuery( elem ), value ); | ||
}; | ||
} | ||
if ( !jQuery.isFunction( value ) ) { | ||
raw = true; | ||
} | ||
|
||
if ( bulk ) { | ||
// Bulk operations run against the entire set | ||
if ( raw ) { | ||
fn.call( elems, value ); | ||
fn = null; | ||
|
||
// ...except when executing function values | ||
} else { | ||
bulk = fn; | ||
fn = function( elem, key, value ) { | ||
return bulk.call( jQuery( elem ), value ); | ||
}; | ||
} | ||
} | ||
|
||
if ( fn ) { | ||
for ( ; i < length; i++ ) { | ||
fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); | ||
} | ||
if ( fn ) { | ||
for ( ; i < length; i++ ) { | ||
fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); | ||
} | ||
} | ||
} | ||
|
||
return chainable ? | ||
elems : | ||
|
||
return chainable ? | ||
elems : | ||
// Gets | ||
bulk ? | ||
fn.call( elems ) : | ||
length ? fn( elems[0], key ) : emptyGet; | ||
}; | ||
|
||
// Gets | ||
bulk ? | ||
fn.call( elems ) : | ||
length ? fn( elems[0], key ) : emptyGet; | ||
}; | ||
return access; | ||
|
||
return access; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
define([ | ||
"../ajax" | ||
], function( jQuery ) { | ||
jQuery._evalUrl = function( url ) { | ||
return jQuery.ajax({ | ||
url: url, | ||
type: "GET", | ||
dataType: "script", | ||
async: false, | ||
global: false, | ||
"throws": true | ||
}); | ||
}; | ||
|
||
return jQuery._evalUrl; | ||
jQuery._evalUrl = function( url ) { | ||
return jQuery.ajax({ | ||
url: url, | ||
type: "GET", | ||
dataType: "script", | ||
async: false, | ||
global: false, | ||
"throws": true | ||
}); | ||
}; | ||
|
||
return jQuery._evalUrl; | ||
|
||
}); |