Blame view
app/bower_components/jquery/src/event/ajax.js
346 Bytes
87c93a029
|
1 |
define( [ |
f986e111b
|
2 3 4 |
"../core", "../event" ], function( jQuery ) { |
87c93a029
|
5 |
"use strict"; |
f986e111b
|
6 |
// Attach a bunch of functions for handling common AJAX events |
87c93a029
|
7 8 9 10 11 12 13 14 |
jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) { |
f986e111b
|
15 16 17 |
jQuery.fn[ type ] = function( fn ) { return this.on( type, fn ); }; |
87c93a029
|
18 |
} ); |
f986e111b
|
19 |
|
87c93a029
|
20 |
} ); |