li7y/static/app.js
2024-07-11 01:16:35 +02:00

15 lines
605 B
JavaScript

// SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
(() => {
// Allows a form checkbox to toggle an input element.
// This requires the form to have a structure like described in the bootstrap documentation:
// https://getbootstrap.com/docs/5.3/forms/input-group/#checkboxes-and-radios
Array.from(document.getElementsByClassName("input-toggle")).forEach(el => {
el.addEventListener("change", e => {
e.target.parentElement.parentElement.querySelector("input:not(.input-toggle)").disabled = !e.target.checked;
})
})
})()