Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 2808 → Rev 3037

/web/acc/phpsysinfo/js/jQuery/jquery.js
1,5 → 1,5
/*!
* jQuery JavaScript Library v1.12.4-ff3fix-ff2fix
* jQuery JavaScript Library v1.12.4-ff3fix-ff2fix-CVE_2015_9251fix-CVE_2019_11358fix
* http://jquery.com/
*
* Includes Sizzle.js
209,8 → 209,9
src = target[ name ];
copy = options[ name ];
 
// Prevent Object.prototype pollution
// Prevent never-ending loop
if ( target === copy ) {
if ( name === "__proto__" || target === copy ) {
continue;
}
 
10445,9 → 10446,13
}
} );
 
// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)
jQuery.ajaxPrefilter( function( s ) {
if ( s.crossDomain ) {
s.contents.script = false;
}
} );
 
 
 
var oldCallbacks = [],
rjsonp = /(=)\?(?=&|$)|\?\?/;