remove console logs

This commit is contained in:
Raphael 2016-04-02 14:54:27 +02:00
parent 111ec5d03f
commit 71903c55ee

View File

@ -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", "");
}