mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
No ticket: fix code style inconsistencies. Closes gh-1361
This commit is contained in:
@@ -12,7 +12,7 @@ jQuery.parseXML = function( data ) {
|
||||
// Support: IE9
|
||||
try {
|
||||
tmp = new DOMParser();
|
||||
xml = tmp.parseFromString( data , "text/xml" );
|
||||
xml = tmp.parseFromString( data, "text/xml" );
|
||||
} catch ( e ) {
|
||||
xml = undefined;
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ var xhrSupported = jQuery.ajaxSettings.xhr(),
|
||||
|
||||
if ( window.ActiveXObject ) {
|
||||
jQuery( window ).on( "unload", function() {
|
||||
for( var key in xhrCallbacks ) {
|
||||
for ( var key in xhrCallbacks ) {
|
||||
xhrCallbacks[ key ]();
|
||||
}
|
||||
xhrCallbacks = undefined;
|
||||
|
||||
Reference in New Issue
Block a user