From befd42a1b6049cfec0639e4d1631264c76820fcd Mon Sep 17 00:00:00 2001 From: hori-hrzn Date: Sat, 25 Nov 2023 11:49:54 +0100 Subject: [PATCH] Removed start button from popup --- popup.html | 1 - popup.js | 15 +-------------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/popup.html b/popup.html index 9ad7fcd..6beb807 100644 --- a/popup.html +++ b/popup.html @@ -24,7 +24,6 @@

List of quizs available:

  • 10- Valencia
  • - \ No newline at end of file diff --git a/popup.js b/popup.js index d5eeeda..1618f12 100644 --- a/popup.js +++ b/popup.js @@ -1,17 +1,4 @@ -document.addEventListener("DOMContentLoaded",()=>{ - - const startButtonPopup = document.getElementById("startButtonPopup"); - - startButtonPopup.addEventListener('click',() => { - // if(!confirm("W101 Trivia Maker is going to start completing quizs for you. Are you signed up?")) return; - - // chrome.runtime.sendMessage({action:"goToQuiz0"}); - - chrome.runtime.sendMessage({action: "answerQuiz"}); - - }) - - +document.addEventListener("DOMContentLoaded",()=>{ })