5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 23:26:21 +00:00
panel/app/javascript/controllers/select_all_controller.js

12 lines
257 B
JavaScript
Raw Permalink Normal View History

import { Controller } from "stimulus";
export default class extends Controller {
static targets = ["toggle", "input"];
toggle(event = undefined) {
this.inputTargets.forEach(input => {
input.checked = this.toggleTarget.checked;
});
}
}