MyRepo-Ums/node_modules/jquery/src/deprecated/ajax-event-alias.js

23 lines
296 B
JavaScript
Raw Normal View History

2024-01-19 10:09:11 +00:00
define( [
"../core",
"../ajax",
"../event"
], function( jQuery ) {
"use strict";
jQuery.each( [
"ajaxStart",
"ajaxStop",
"ajaxComplete",
"ajaxError",
"ajaxSuccess",
"ajaxSend"
], function( _i, type ) {
jQuery.fn[ type ] = function( fn ) {
return this.on( type, fn );
};
} );
} );