nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jquery / src / event / ajax.js
1 define( [
2         "../core",
3         "../event"
4 ], function( jQuery ) {
5
6 // Attach a bunch of functions for handling common AJAX events
7 jQuery.each( [
8         "ajaxStart",
9         "ajaxStop",
10         "ajaxComplete",
11         "ajaxError",
12         "ajaxSuccess",
13         "ajaxSend"
14 ], function( i, type ) {
15         jQuery.fn[ type ] = function( fn ) {
16                 return this.on( type, fn );
17         };
18 } );
19
20 } );