From c0e4280282d03a449caaf87d5a6bfe151a874796 Mon Sep 17 00:00:00 2001 From: John Resig Date: Mon, 28 Aug 2006 06:19:13 +0000 Subject: [PATCH 1/1] Fixed the issue with jQuery not packing correctly for Safari. --- src/jquery/jquery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index a204992..115ee7f 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -69,7 +69,7 @@ function jQuery(a,c) { } // Map over the $ in case of overwrite -if ( $ ) +if ( typeof $ != "undefined" ) jQuery._$ = $; // Map the jQuery namespace to the '$' one -- 1.7.10.4