silverstripe-framework/javascript/src/ToggleCompositeField.js

30 lines
542 B
JavaScript
Raw Normal View History

import $ from './jQuery';
$.entwine('ss', function($){
$('.ss-toggle').entwine({
onadd: function() {
this._super();
this.accordion({
heightStyle: "content",
collapsible: true,
active: (this.hasClass("ss-toggle-start-closed")) ? false : 0
});
},
onremove: function() {
if (this.data('accordion')) this.accordion('destroy');
this._super();
},
getTabSet: function() {
return this.closest(".ss-tabset");
},
fromTabSet: {
ontabsshow: function() {
this.accordion("resize");
}
}
});
});