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/exports/global.js')
-rw-r--r--libs/bower_components/jquery/src/exports/global.js10
1 files changed, 2 insertions, 8 deletions
diff --git a/libs/bower_components/jquery/src/exports/global.js b/libs/bower_components/jquery/src/exports/global.js
index 8eee5bb7f0..17ac17d533 100644
--- a/libs/bower_components/jquery/src/exports/global.js
+++ b/libs/bower_components/jquery/src/exports/global.js
@@ -1,9 +1,5 @@
-define([
- "../core",
- "../var/strundefined"
-], function( jQuery, strundefined ) {
-
var
+
// Map over jQuery in case of overwrite
_jQuery = window.jQuery,
@@ -25,8 +21,6 @@ jQuery.noConflict = function( deep ) {
// Expose jQuery and $ identifiers, even in
// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
// and CommonJS for browser emulators (#13566)
-if ( typeof noGlobal === strundefined ) {
+if ( !noGlobal ) {
window.jQuery = window.$ = jQuery;
}
-
-});