Merge pull request #1056 from kopymark/patch-2

BUG: Accordion widget doesn't actually accept 'true' for 'active'
This commit is contained in:
Ingo Schommer 2013-01-11 06:43:41 -08:00
commit 1dcd9514f9

View File

@ -4,7 +4,7 @@
onadd: function() {
this.accordion({
collapsible: true,
active: !this.hasClass("ss-toggle-start-closed")
active: (this.hasClass("ss-toggle-start-closed")) ? false : 0
});
this._super();