No ticket: fix code style inconsistencies. Closes gh-1361

This commit is contained in:
Oleg
2013-09-11 05:08:01 +04:00
parent e12746d756
commit cb37994d76
15 changed files with 32 additions and 31 deletions

View File

@@ -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;
}

View File

@@ -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;