Blame view

bower_components/jquery/src/event/ajax.js 331 Bytes
a1a3bc73   Luigi Serra   graphs updates
1
  define( [
74249687   Luigi Serra   Cross browser con...
2
3
4
5
6
  	"../core",
  	"../event"
  ], function( jQuery ) {
  
  // Attach a bunch of functions for handling common AJAX events
a1a3bc73   Luigi Serra   graphs updates
7
8
9
10
11
12
13
14
  jQuery.each( [
  	"ajaxStart",
  	"ajaxStop",
  	"ajaxComplete",
  	"ajaxError",
  	"ajaxSuccess",
  	"ajaxSend"
  ], function( i, type ) {
74249687   Luigi Serra   Cross browser con...
15
16
17
  	jQuery.fn[ type ] = function( fn ) {
  		return this.on( type, fn );
  	};
a1a3bc73   Luigi Serra   graphs updates
18
  } );
74249687   Luigi Serra   Cross browser con...
19
  
a1a3bc73   Luigi Serra   graphs updates
20
  } );