diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-07-14 23:41:02 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-07-14 23:41:02 +0000 |
commit | 86f15f876feee606b2cddeb059fc24b65133f358 (patch) | |
tree | 2b35c61b2ad93e1a4d941e10b7893950622ca41c /ui/ui.accordion.js | |
parent | e16cb37f2eea8a1d396588968db39eadeef09b47 (diff) | |
download | jquery-ui-86f15f876feee606b2cddeb059fc24b65133f358.tar.gz jquery-ui-86f15f876feee606b2cddeb059fc24b65133f358.zip |
Accordion: Updated to use new trigger() method.
Diffstat (limited to 'ui/ui.accordion.js')
-rw-r--r-- | ui/ui.accordion.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.accordion.js b/ui/ui.accordion.js index 4865c317e..4df9edea9 100644 --- a/ui/ui.accordion.js +++ b/ui/ui.accordion.js @@ -111,7 +111,7 @@ function completed(cancel) { overflow: "" }); } - $(this).triggerHandler("accordionchange", [$.event.fix({type: 'accordionchange', target: instance.element[0]}), options.data], options.change); + instance.trigger('change', null, options.data); } function toggle(toShow, toHide, data, clickedActive, down) { |