feat: Update on change in input fields
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
moanos [he/him] 2024-07-21 11:36:33 +02:00
parent 75c814c057
commit ecd7027bdd

View File

@ -90,9 +90,11 @@
<script> <script>
const inputWidth = document.getElementById("width"); const inputWidth = document.getElementById("width");
inputWidth.onchange = update;
const inputDepth = document.getElementById("depth"); const inputDepth = document.getElementById("depth");
inputDepth.onchange = update;
const inputHeight = document.getElementById("height"); const inputHeight = document.getElementById("height");
inputHeight.onchange = update;
const selectSavicSuiteRoyaleXL = document.getElementById("SavicSuiteRoyaleXL"); const selectSavicSuiteRoyaleXL = document.getElementById("SavicSuiteRoyaleXL");