From 71903c55ee1b62209fc5fa153ce31bdf83a13b17 Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 2 Apr 2016 14:54:27 +0200 Subject: [PATCH] remove console logs --- web/js/main.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/js/main.js b/web/js/main.js index 3ff98df..fa85379 100644 --- a/web/js/main.js +++ b/web/js/main.js @@ -214,7 +214,6 @@ function fillFragenSelect() { } function setFrageIndex(index) { - console.log("setFrage", index); if(index >= 0 && index < $("#questionsSelcet").find("option").length) { $("#questionsSelcet").find("option").removeAttr("selected"); $($("#questionsSelcet").find("option")[index]).prop("selected", "true"); @@ -227,7 +226,6 @@ function setFrageIndex(index) { function changeFrage() { var index = $("#questionsSelcet>option:selected").index(); - console.log("changeFrage", index); wsSend("loadQuestion", index); wsSend("clearAllFailsBtn", ""); }