Update bower dependencies.
This commit is contained in:
parent
818bdad5af
commit
2beab45f32
185 changed files with 21480 additions and 8110 deletions
5
app/bower_components/jquery/src/ajax/xhr.js
vendored
5
app/bower_components/jquery/src/ajax/xhr.js
vendored
|
@ -75,7 +75,8 @@ jQuery.ajaxTransport( function( options ) {
|
|||
return function() {
|
||||
if ( callback ) {
|
||||
callback = errorCallback = xhr.onload =
|
||||
xhr.onerror = xhr.onabort = xhr.onreadystatechange = null;
|
||||
xhr.onerror = xhr.onabort = xhr.ontimeout =
|
||||
xhr.onreadystatechange = null;
|
||||
|
||||
if ( type === "abort" ) {
|
||||
xhr.abort();
|
||||
|
@ -115,7 +116,7 @@ jQuery.ajaxTransport( function( options ) {
|
|||
|
||||
// Listen to events
|
||||
xhr.onload = callback();
|
||||
errorCallback = xhr.onerror = callback( "error" );
|
||||
errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" );
|
||||
|
||||
// Support: IE 9 only
|
||||
// Use onreadystatechange to replace onabort
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue