diff options
author | John Resig <jeresig@gmail.com> | 2006-08-28 06:19:13 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-08-28 06:19:13 +0000 |
commit | c0e4280282d03a449caaf87d5a6bfe151a874796 (patch) | |
tree | b25e59ddf6c1ff7449c4ca33afeed3a06e30616b /src | |
parent | 0382a490f5e5ee781098981db050a23d4f2e5a36 (diff) | |
download | jquery-c0e4280282d03a449caaf87d5a6bfe151a874796.tar.gz jquery-c0e4280282d03a449caaf87d5a6bfe151a874796.zip |
Fixed the issue with jQuery not packing correctly for Safari.
Diffstat (limited to 'src')
-rw-r--r-- | src/jquery/jquery.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index a204992ad..115ee7f2d 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 |