From 6fcfb7c04d32e1c8b26a312295bf7ac3ec2d2ad7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 13 Jul 2018 19:06:45 +0200 Subject: Fixed many permissions and began admin interface --- public/bower_components/jquery/src/event/ajax.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 public/bower_components/jquery/src/event/ajax.js (limited to 'public/bower_components/jquery/src/event/ajax.js') diff --git a/public/bower_components/jquery/src/event/ajax.js b/public/bower_components/jquery/src/event/ajax.js new file mode 100644 index 0000000..98e194b --- /dev/null +++ b/public/bower_components/jquery/src/event/ajax.js @@ -0,0 +1,20 @@ +define( [ + "../core", + "../event" +], function( jQuery ) { + +// Attach a bunch of functions for handling common AJAX events +jQuery.each( [ + "ajaxStart", + "ajaxStop", + "ajaxComplete", + "ajaxError", + "ajaxSuccess", + "ajaxSend" +], function( i, type ) { + jQuery.fn[ type ] = function( fn ) { + return this.on( type, fn ); + }; +} ); + +} ); -- cgit v1.2.3