mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
19 lines
446 B
JavaScript
19 lines
446 B
JavaScript
|
|
class ToggleSwitch {
|
|
|
|
constructor(elem) {
|
|
this.elem = elem;
|
|
this.input = elem.querySelector('input[type=hidden]');
|
|
this.checkbox = elem.querySelector('input[type=checkbox]');
|
|
|
|
this.checkbox.addEventListener('change', this.onClick.bind(this));
|
|
}
|
|
|
|
onClick(event) {
|
|
let checked = this.checkbox.checked;
|
|
this.input.value = checked ? 'true' : 'false';
|
|
}
|
|
|
|
}
|
|
|
|
export default ToggleSwitch; |