diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-11-18 01:54:45 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-11-18 01:54:45 +0000 |
commit | 291202dabe4dbb708d1cff5c35e13770e191d82f (patch) | |
tree | f0cfc13b44758d4dd4e2f3eb89a6ece070fc164b /ui/ui.accordion.js | |
parent | e0dec0bd8476fa1af090cc6e473c1e135084ebdf (diff) | |
download | jquery-ui-291202dabe4dbb708d1cff5c35e13770e191d82f.tar.gz jquery-ui-291202dabe4dbb708d1cff5c35e13770e191d82f.zip |
Various: Fixed #3596: Removed references to jQuery for .noConflict() compatibility.
Diffstat (limited to 'ui/ui.accordion.js')
-rw-r--r-- | ui/ui.accordion.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/ui.accordion.js b/ui/ui.accordion.js index 87141a4c6..1e519c975 100644 --- a/ui/ui.accordion.js +++ b/ui/ui.accordion.js @@ -195,7 +195,7 @@ function toggle(toShow, toHide, data, clickedActive, down) { if ( !options.alwaysOpen && clickedActive ) { animOptions = { - toShow: jQuery([]), + toShow: $([]), toHide: toHide, complete: complete, down: down, @@ -265,9 +265,9 @@ function clickHandler(event) { var toHide = options.active.next(), data = { options: options, - newHeader: jQuery([]), + newHeader: $([]), oldHeader: options.active, - newContent: jQuery([]), + newContent: $([]), oldContent: toHide }, toShow = (options.active = $([])); |