rpi-rgb/app/static/app.js

11 lines
244 B
JavaScript
Raw Permalink Normal View History

2023-05-28 13:38:23 +02:00
document.addEventListener("DOMContentLoaded", () => {
document.querySelectorAll("a.color").forEach(button => {
2023-06-01 21:24:04 +02:00
button.addEventListener("click", () => {
2023-05-28 13:38:23 +02:00
fetch("/color/" + button.dataset.color, {method: "POST"});
});
});
});