Sha256: c6f36bb211140f3a004206b31c6cf9a13ac383b45024dd63e6aca0ad8bf7d185

Contents?: true

Size: 1.01 KB

Versions: 10

Compression:

Stored size: 1.01 KB

Contents

// Expose jQuery to the global object
window.jQuery = window.$ = jQuery;

// Expose jQuery as an AMD module, but only for AMD loaders that
// understand the issues with loading multiple versions of jQuery
// in a page that all might call define(). The loader will indicate
// they have special allowances for multiple jQuery versions by
// specifying define.amd.jQuery = true. Register as a named module,
// since jQuery can be concatenated with other files that may use define,
// but not use a proper concatenation script that understands anonymous
// AMD modules. A named AMD is safest and most robust way to register.
// Lowercase jquery is used because AMD module names are derived from
// file names, and jQuery is normally delivered in a lowercase file name.
// Do this after creating the global so that if an AMD module wants to call
// noConflict to hide this version of jQuery, it will work.
if ( typeof define === "function" && define.amd && define.amd.jQuery ) {
	define( "jquery", [], function () { return jQuery; } );
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
lady_josephine-0.7.0 vendor/assets/components/jquery/src/exports.js
lady_josephine-0.6.3 vendor/assets/components/jquery/src/exports.js
lady_josephine-0.6.2 vendor/assets/components/jquery/src/exports.js
lady_josephine-0.6.1 vendor/assets/components/jquery/src/exports.js
lady_josephine-0.6.0 vendor/assets/components/jquery/src/exports.js
lady_josephine-0.5.0 vendor/assets/components/jquery/src/exports.js
lady_josephine-0.0.4 vendor/assets/components/jquery/src/exports.js
lady_josephine-0.0.3 vendor/assets/components/jquery/src/exports.js
lady_josephine-0.0.2 vendor/assets/components/jquery/src/exports.js
lady_josephine-0.0.1 vendor/assets/components/jquery/src/exports.js