summaryrefslogtreecommitdiff
path: root/rannak/mangud/direktor/loosung/script.js
diff options
context:
space:
mode:
Diffstat (limited to 'rannak/mangud/direktor/loosung/script.js')
-rw-r--r--rannak/mangud/direktor/loosung/script.js22
1 files changed, 19 insertions, 3 deletions
diff --git a/rannak/mangud/direktor/loosung/script.js b/rannak/mangud/direktor/loosung/script.js
index 191d743..576ad4d 100644
--- a/rannak/mangud/direktor/loosung/script.js
+++ b/rannak/mangud/direktor/loosung/script.js
@@ -98,14 +98,30 @@ document.querySelector("#loosung").addEventListener("input", () => {CheckIfAllGo
+// BulletPoints eventListener
+bulletBtns = document.querySelectorAll("#sundmus");
+bulletBtns.forEach(element => {
+ element.addEventListener('change', () => CheckIfAllGood());
+});
+
+
+
+
+
+
-// Funcs //
+
+
+
+
+
+
+// Other Funcs //
function CheckIfAllGood(){
//let radioBtn = document.querySelector("input[name='sundmuseValik']:checked");
let loosung = document.querySelector("#loosung");
-
if (document.querySelector("input[name='sundmuseValik']:checked") != null &&
changedArr.length >= 3 && loosung.innerHTML != "Muuda loosung enda omaks!"){
moveOnEnable();
@@ -119,6 +135,6 @@ function CheckIfAllGood(){
function moveOnEnable(){
const btn = document.querySelector(".moveOn");
btn.disabled = false;
- btn.onclick = () => location.href = "";
+ btn.onclick = () => location.href = "../kone";
}