Moved exposing window.jQuery and window.$ to the end of the jQuery file (helps some...
authorJohn Resig <jeresig@gmail.com>
Mon, 10 Aug 2009 21:22:31 +0000 (21:22 +0000)
committerJohn Resig <jeresig@gmail.com>
Mon, 10 Aug 2009 21:22:31 +0000 (21:22 +0000)
src/core.js
src/outro.js

index 35cac37..890e9a2 100644 (file)
@@ -39,9 +39,6 @@ var jQuery = function( selector, context ) {
        push = Array.prototype.push,
        slice = Array.prototype.slice;
 
-// Expose jQuery to the global object
-window.jQuery = window.$ = jQuery;
-
 jQuery.fn = jQuery.prototype = {
        init: function( selector, context ) {
                var match, elem, ret;
index 7773a74..5d87b7e 100644 (file)
@@ -1 +1,4 @@
+// Expose jQuery to the global object
+window.jQuery = window.$ = jQuery;
+
 })(window);