diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-02-13 02:25:21 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-02-13 02:25:21 +0000 |
commit | 16c0c8f2594234ad970fc22112d4752c3f1e467e (patch) | |
tree | 4339a5feb96321b9847104eaba58ed0daa2ab926 /ui/ui.core.js | |
parent | 8ba40888a5943efd64c17d6edd2dda86dd7a6ec2 (diff) | |
download | jquery-ui-16c0c8f2594234ad970fc22112d4752c3f1e467e.tar.gz jquery-ui-16c0c8f2594234ad970fc22112d4752c3f1e467e.zip |
Prevent loading core files multiple times. Fixes #4130 - Too much recurson with double include.
Diffstat (limited to 'ui/ui.core.js')
-rw-r--r-- | ui/ui.core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.core.js b/ui/ui.core.js index beee725bc..b8ea359c8 100644 --- a/ui/ui.core.js +++ b/ui/ui.core.js @@ -7,7 +7,7 @@ * * http://docs.jquery.com/UI */ -;(function($) { +;jQuery.ui || (function($) { var _remove = $.fn.remove, isFF2 = $.browser.mozilla && (parseFloat($.browser.version) < 1.9); |