diff options
author | Richard Worth <rdworth@gmail.com> | 2008-06-07 19:57:55 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-06-07 19:57:55 +0000 |
commit | 938369202574eafed98d927a2ead380fd75794a2 (patch) | |
tree | 5e987cced6e7f544502b40e8d9905cf3c770528f | |
parent | c94ffa276b5101275fe2234501417e92f018b439 (diff) | |
download | jquery-ui-938369202574eafed98d927a2ead380fd75794a2.tar.gz jquery-ui-938369202574eafed98d927a2ead380fd75794a2.zip |
one more for #2928 - Plugin instances should not be exposed in the ui parameter of callbacks
-rw-r--r-- | ui/ui.accordion.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ui/ui.accordion.js b/ui/ui.accordion.js index 7ba499d49..b2c36ce53 100644 --- a/ui/ui.accordion.js +++ b/ui/ui.accordion.js @@ -166,7 +166,6 @@ function clickHandler(event) { options.active.parent().andSelf().toggleClass(options.selectedClass); var toHide = options.active.next(), data = { - instance: this, options: options, newHeader: jQuery([]), oldHeader: options.active, @@ -209,7 +208,6 @@ function clickHandler(event) { toHide = options.active.next(), //data = [clicked, options.active, toShow, toHide], data = { - instance: this, options: options, newHeader: clicked, oldHeader: options.active, |