Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
cracker0dks committed Apr 2, 2016
1 parent 111ec5d commit 71903c5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions web/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand All @@ -227,7 +226,6 @@ function setFrageIndex(index) {

function changeFrage() {
var index = $("#questionsSelcet>option:selected").index();
console.log("changeFrage", index);
wsSend("loadQuestion", index);
wsSend("clearAllFailsBtn", "");
}
Expand Down

0 comments on commit 71903c5

Please sign in to comment.