ajax.js 331 B

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