From c8bd6e0a4aef14ad4808a63fc106849918ea4666 Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 21 Aug 2007 07:00:06 +0000 Subject: [PATCH] You can now assign jQuery to random namespaces - very cool. (Bug #1393) --- src/intro.js | 2 +- src/jquery/jquery.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intro.js b/src/intro.js index 2e64f66..9c2f985 100644 --- a/src/intro.js +++ b/src/intro.js @@ -1,2 +1,2 @@ // prevent execution of jQuery if included more than once -if(typeof window.jQuery == "undefined") (function(){ +if ( typeof jQuery == "undefined" ) (function(){ diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 8089e4e..9eb8377 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -19,7 +19,7 @@ * @param jQuery|Element|Array c context * @cat Core */ -window.jQuery = function(a,c) { +var jQuery = window.jQuery = function(a,c) { // If the context is global, return a new object if ( window == this || !this.init ) return new jQuery(a,c); -- 1.7.10.4