File tree 5 files changed +3
-9
lines changed
client/templates/course/lesson/quiz
5 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ Quiz = function(){
10
10
} ;
11
11
12
12
quiz . questions . push ( val ) ;
13
- console . log ( quiz . questions ) ;
14
13
} ;
15
14
16
15
} ;
Original file line number Diff line number Diff line change @@ -34,10 +34,8 @@ Template.questionInputControl.events({
34
34
}
35
35
}
36
36
option . isCorrect = event . target . checked ;
37
- console . log ( "option.isCorrent ? " + option . isCorrect )
38
37
} else {
39
38
question . answered = true ;
40
39
}
41
- console . log ( question ) ;
42
40
}
43
41
} ) ;
Original file line number Diff line number Diff line change @@ -46,8 +46,6 @@ Template.trueOrFalseTemplate.events({
46
46
question . answered = true ;
47
47
}
48
48
49
- console . log ( "check question id" ) ;
50
- console . log ( question ) ;
51
49
52
50
}
53
51
} )
Original file line number Diff line number Diff line change 5
5
.quiz-content {
6
6
}
7
7
.question-wrapper {
8
- border : 1px dotted lightsteelblue ;
8
+ border : 1px dotted # dc681d ;
9
9
border-radius : 4px ;
10
- background-color : # eff7fe ;
10
+ background-color : # f5f5f5 ;
11
11
padding : 10px ;
12
12
margin-top : 7px ;
13
13
}
Original file line number Diff line number Diff line change @@ -66,12 +66,11 @@ Template.quizContent.events({
66
66
var question = questions [ q ] ;
67
67
question . saved = true ;
68
68
}
69
- console . log ( questions ) ;
70
69
Quizzes . update ( activeQuiz . _id , { $set : { 'questions' : questions } } )
71
70
}
72
71
else { // preview/exam mode
73
72
for ( var question in questions ) {
74
- console . log ( "answered : " + question . answered ) ;
73
+ // console.log("answered : " + question.answered);
75
74
}
76
75
console . log ( " should submit the quiz" )
77
76
}
You can’t perform that action at this time.
0 commit comments