Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/bower_components/jquery/src/event/ajax.js')
-rw-r--r--libs/bower_components/jquery/src/event/ajax.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/libs/bower_components/jquery/src/event/ajax.js b/libs/bower_components/jquery/src/event/ajax.js
deleted file mode 100644
index 98e194bf03..0000000000
--- a/libs/bower_components/jquery/src/event/ajax.js
+++ /dev/null
@@ -1,20 +0,0 @@
-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 );
- };
-} );
-
-} );