File: D:/HostingSpaces/egovers/edwingovers.nl/resources/assets/js/kms/attributes/onOff.js
//also @See onOff.blade.php
class OnOff {
toggleOnOff($id) {
let onOffBox = document.getElementById($id);
let onOffSwitch = document.getElementById($id + '-switch');
if (onOffBox.checked) {
onOffBox.value = '1';
onOffSwitch.classList.add('on');
}
else {
onOffBox.value = '0';
onOffSwitch.classList.remove('on');
}
}
toggleOnOffSwitch($id) {
let onOffBox = document.getElementById($id);
onOffBox.checked = (onOffBox.checked) ? onOffBox.checked = false : onOffBox.checked = true;
this.toggleOnOff($id);
}
}