ajax.js 346 B

12345678910111213141516171819202122
  1. define( [
  2. "../core",
  3. "../event"
  4. ], function( jQuery ) {
  5. "use strict";
  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. } );