Packages

Moon Design System written in phoenix_live_view

Current section

Files

Jump to
moon_live_view assets js hooks checkbox.js
Raw

assets/js/hooks/checkbox.js

const setIndeterminateState = (el) => {
el.indeterminate = el.dataset.indeterminate !== undefined;
};
const CheckboxHook = {
mounted() {
setIndeterminateState(this.el);
},
updated() {
setIndeterminateState(this.el);
},
};
export default CheckboxHook;