mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
e3230f8f21
Fixed broken build system in broken webpack version. Also updates module system to standardise on ES6 import/exports, Especially since babel has changed it's 'default' logic for the old module system.
37 lines
793 B
JavaScript
37 lines
793 B
JavaScript
/**
|
|
* Collapsible
|
|
* Provides some simple logic to allow collapsible sections.
|
|
*/
|
|
class Collapsible {
|
|
|
|
constructor(elem) {
|
|
this.elem = elem;
|
|
this.trigger = elem.querySelector('[collapsible-trigger]');
|
|
this.content = elem.querySelector('[collapsible-content]');
|
|
|
|
if (!this.trigger) return;
|
|
|
|
this.trigger.addEventListener('click', this.toggle.bind(this));
|
|
}
|
|
|
|
open() {
|
|
this.elem.classList.add('open');
|
|
$(this.content).slideDown(400);
|
|
}
|
|
|
|
close() {
|
|
this.elem.classList.remove('open');
|
|
$(this.content).slideUp(400);
|
|
}
|
|
|
|
toggle() {
|
|
if (this.elem.classList.contains('open')) {
|
|
this.close();
|
|
} else {
|
|
this.open();
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
export default Collapsible; |