summaryrefslogtreecommitdiffstats
path: root/Build/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'Build/index.html')
-rw-r--r--Build/index.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/Build/index.html b/Build/index.html
index 4c371ec..02c0d3f 100644
--- a/Build/index.html
+++ b/Build/index.html
@@ -33,7 +33,7 @@
<button class="setNumberTaps" type="button">Set Taps</button>
<textarea class="outSetNumberTaps"></textarea>
- <button class="recalculateFir" type="button">Calc</button>
+ <button class="recalculateFir" id="recalculateFir" type="button">Calc</button>
<textarea class="outCoeficients">1</textarea>
@@ -59,6 +59,11 @@
outCoeficients.value = 2;
})
+ document.querySelector("#recalculateFir").onclick = function() {
+ console.log("Oh noe");
+ outCoeficients.value = 2;
+ }
+
</script>