Sha256: ac7a2c35a4f9766ca14a639bac9671fd936ecf49c9e9ac3d4b0a950f1491daa0
Contents?: true
Size: 608 Bytes
Versions: 138
Compression:
Stored size: 608 Bytes
Contents
define( [ "../core" ], function( jQuery, noGlobal ) { "use strict"; var // Map over jQuery in case of overwrite _jQuery = window.jQuery, // Map over the $ in case of overwrite _$ = window.$; jQuery.noConflict = function( deep ) { if ( window.$ === jQuery ) { window.$ = _$; } if ( deep && window.jQuery === jQuery ) { window.jQuery = _jQuery; } return jQuery; }; // Expose jQuery and $ identifiers, even in AMD // (#7102#comment:10, https://github.com/jquery/jquery/pull/557) // and CommonJS for browser emulators (#13566) if ( !noGlobal ) { window.jQuery = window.$ = jQuery; } } );
Version data entries
138 entries across 120 versions & 22 rubygems