ajax.js 322 B

12345678910111213
  1. define([
  2. "../core",
  3. "../event"
  4. ], function( jQuery ) {
  5. // Attach a bunch of functions for handling common AJAX events
  6. jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
  7. jQuery.fn[ type ] = function( fn ) {
  8. return this.on( type, fn );
  9. };
  10. });
  11. });