If you pass multiselectable as an option like any other, its value gets overridden by specificOptions.multiselectable (the data-accordion-multiselectable) attribute.
I think it makes sense to not override it as long as no data attribute is present, e.g. when I use $( '$( '.foobar' ).accordion( { multiselectable: false } );, I expect multiselectable to be false.
If you pass
multiselectable
as an option like any other, its value gets overridden byspecificOptions.multiselectable
(thedata-accordion-multiselectable
) attribute.I think it makes sense to not override it as long as no data attribute is present, e.g. when I use
$( '$( '.foobar' ).accordion( { multiselectable: false } );
, I expectmultiselectable
to be false.