diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core.js | 14 | ||||
-rw-r--r-- | src/exports.js | 22 | ||||
-rw-r--r-- | src/outro.js | 3 |
3 files changed, 23 insertions, 16 deletions
diff --git a/src/core.js b/src/core.js index bc728ee90..e56394bf6 100644 --- a/src/core.js +++ b/src/core.js @@ -934,20 +934,6 @@ function doScrollCheck() { jQuery.ready(); } -// 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. -if ( typeof define === "function" && define.amd && define.amd.jQuery ) { - define( "jquery", [], function () { return jQuery; } ); -} - return jQuery; })(); diff --git a/src/exports.js b/src/exports.js new file mode 100644 index 000000000..7d8964f01 --- /dev/null +++ b/src/exports.js @@ -0,0 +1,22 @@ +(function( jQuery ) { + +// 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; } ); +} + +})( jQuery ); diff --git a/src/outro.js b/src/outro.js index 64ef28ed3..ac484391c 100644 --- a/src/outro.js +++ b/src/outro.js @@ -1,3 +1,2 @@ -// Expose jQuery to the global object -window.jQuery = window.$ = jQuery; + })( window ); |