From 225ba506fb0bb3d784c5173860356cef7abb9f4b Mon Sep 17 00:00:00 2001 From: Keyemail Date: Tue, 14 May 2024 00:52:16 -0700 Subject: [PATCH] Moved from github --- src/views/HomePage.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/HomePage.vue b/src/views/HomePage.vue index ea7e4dc..a0da7d7 100644 --- a/src/views/HomePage.vue +++ b/src/views/HomePage.vue @@ -28,10 +28,12 @@ export default { if(counter >= 4){ var quack = new Audio(require('@/assets/sounds/duck-quack.mp3')); quack.play(); + alert('You just got quacked!'); counter = 0; + } else { + alert('Nothing to scroll down to, may come useful later though..'); + counter++; } - alert('Nothing to scroll down to, may come useful later though..'); - counter++; } } }