mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
30 lines
542 B
JavaScript
30 lines
542 B
JavaScript
|
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");
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
});
|