diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-03-07 19:17:09 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-03-07 19:17:09 +0100 |
commit | 050958277317cf127b98f8ac26f70f57cf147b26 (patch) | |
tree | e34022084fac3fc3973e4bf3b47fd71c2a25037e /tests/unit | |
parent | 1d68f1339975e5c3f725c8860870d402cbcfec27 (diff) | |
download | jquery-ui-050958277317cf127b98f8ac26f70f57cf147b26.tar.gz jquery-ui-050958277317cf127b98f8ac26f70f57cf147b26.zip |
Accordion: Fix unbinding of accordion event option when dealing with multiple events. Make sure to unbind only those namespaced to .accordion
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/accordion/accordion_options.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit/accordion/accordion_options.js b/tests/unit/accordion/accordion_options.js index 8206b1d62..74a9a3177 100644 --- a/tests/unit/accordion/accordion_options.js +++ b/tests/unit/accordion/accordion_options.js @@ -152,6 +152,7 @@ test( "{ event: custom }", function() { // ensure old event handlers are unbound element.find( ".ui-accordion-header" ).eq( 1 ).trigger( "custom1" ); + element.find( ".ui-accordion-header" ).eq( 1 ).trigger( "custom2" ); equal( element.accordion( "option", "active" ), 2 ); accordion_state( element, 0, 0, 1 ); |