nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jquery / src / exports / global.js
1 var
2
3         // Map over jQuery in case of overwrite
4         _jQuery = window.jQuery,
5
6         // Map over the $ in case of overwrite
7         _$ = window.$;
8
9 jQuery.noConflict = function( deep ) {
10         if ( window.$ === jQuery ) {
11                 window.$ = _$;
12         }
13
14         if ( deep && window.jQuery === jQuery ) {
15                 window.jQuery = _jQuery;
16         }
17
18         return jQuery;
19 };
20
21 // Expose jQuery and $ identifiers, even in AMD
22 // (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
23 // and CommonJS for browser emulators (#13566)
24 if ( !noGlobal ) {
25         window.jQuery = window.$ = jQuery;
26 }