aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.accordion.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2008-11-18 01:54:45 +0000
committerScott González <scott.gonzalez@gmail.com>2008-11-18 01:54:45 +0000
commit291202dabe4dbb708d1cff5c35e13770e191d82f (patch)
treef0cfc13b44758d4dd4e2f3eb89a6ece070fc164b /ui/ui.accordion.js
parente0dec0bd8476fa1af090cc6e473c1e135084ebdf (diff)
downloadjquery-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.js6
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 = $([]));