]> git.r.bdr.sh - rbdr/dotfiles/blob - atom/packages/ex-mode/node_modules/space-pen/node_modules/jquery/src/event/ajax.js
278c403ee614ab2c6e4bb35c4e2e7ea5fe9e93d0
[rbdr/dotfiles] / atom / packages / ex-mode / node_modules / space-pen / node_modules / 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( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
8 jQuery.fn[ type ] = function( fn ) {
9 return this.on( type, fn );
10 };
11 });
12
13 });