ajax-event-alias.js 296 B

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