Blame view

bower_components/jquery/src/event/ajax.js 322 Bytes
c5169e0e   Renato De Donato   a new hope
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
c5169e0e   Renato De Donato   a new hope
7
  jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
74249687   Luigi Serra   Cross browser con...
8
9
10
  	jQuery.fn[ type ] = function( fn ) {
  		return this.on( type, fn );
  	};
c5169e0e   Renato De Donato   a new hope
11
  });
74249687   Luigi Serra   Cross browser con...
12
  
c5169e0e   Renato De Donato   a new hope
13
  });