diff --git a/truthseeker/static/js/game.js b/truthseeker/static/js/game.js index 0902876..42d706a 100644 --- a/truthseeker/static/js/game.js +++ b/truthseeker/static/js/game.js @@ -23,6 +23,11 @@ function setListenerToInterrogationNextBtn(){ document.getElementById("interrogation_next_btn").addEventListener("click", showEmotionAndCulpritChoicesView) } +function setQuestionButtonsListeners(){ + document.getElementById("QA_0").addEventListener("click",askTypeZeroQuestion); + document.getElementById("QA_1").addEventListener("click",askTypeOneQuestion); +} + function goBackToInterogation(){ hide("interrogation_suspect"); show("interrogation");