Skip to content

Commit 8e701bd

Browse files
committed
code cleanup
1 parent d8f29a4 commit 8e701bd

File tree

5 files changed

+3
-9
lines changed

5 files changed

+3
-9
lines changed

both/model/quizModel.js

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ Quiz = function(){
1010
};
1111

1212
quiz.questions.push(val);
13-
console.log(quiz.questions);
1413
};
1514

1615
};

client/templates/course/lesson/quiz/questions/partials/questionInputControl.js

-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ Template.questionInputControl.events({
3434
}
3535
}
3636
option.isCorrect = event.target.checked;
37-
console.log("option.isCorrent ? " + option.isCorrect)
3837
}else{
3938
question.answered = true;
4039
}
41-
console.log(question);
4240
}
4341
});

client/templates/course/lesson/quiz/questions/partials/trueOrFalse.js

-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ Template.trueOrFalseTemplate.events({
4646
question.answered = true;
4747
}
4848

49-
console.log("check question id");
50-
console.log(question);
5149

5250
}
5351
})

client/templates/course/lesson/quiz/quiz-content.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
.quiz-content{
66
}
77
.question-wrapper{
8-
border: 1px dotted lightsteelblue;
8+
border: 1px dotted #dc681d;
99
border-radius: 4px;
10-
background-color: #eff7fe;
10+
background-color: #f5f5f5;
1111
padding: 10px;
1212
margin-top: 7px;
1313
}

client/templates/course/lesson/quiz/quiz-content.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,11 @@ Template.quizContent.events({
6666
var question = questions[q];
6767
question.saved = true;
6868
}
69-
console.log(questions);
7069
Quizzes.update(activeQuiz._id, {$set: {'questions': questions}})
7170
}
7271
else{ // preview/exam mode
7372
for(var question in questions){
74-
console.log("answered : " + question.answered);
73+
//console.log("answered : " + question.answered);
7574
}
7675
console.log(" should submit the quiz")
7776
}

0 commit comments

Comments
 (0)