File tree 2 files changed +7
-2
lines changed
bases/rsptx/web2py_server/applications/runestone
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -440,6 +440,10 @@ async function showPeerEnableVote2() {
440
440
let nextStep = document . getElementById ( "nextStep" ) ;
441
441
nextStep . innerHTML =
442
442
"Please Answer the question again. Even if you do not wish to change your answer. After answering click the button to go on to the next question." ;
443
+ nextStep . style . color = "red" ;
444
+ let cq = document . getElementById ( `${ currentQuestion } _feedback` ) ;
445
+ cq . style . display = "none" ;
446
+
443
447
$ ( ".runestone [type=radio]" ) . prop ( "checked" , false ) ;
444
448
$ ( ".runestone [type=checkbox]" ) . prop ( "checked" , false ) ;
445
449
studentVoteCount += 1 ;
@@ -448,6 +452,7 @@ async function showPeerEnableVote2() {
448
452
if ( checkme . innerHTML === "Check Me" ) {
449
453
checkme . addEventListener ( "click" , function ( event ) {
450
454
studentSubmittedVote2 = true ;
455
+ cq . style . display = "block" ;
451
456
} ) ;
452
457
}
453
458
}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ <h2>Peer Instruction: {{=assignment_name}}</h2>
18
18
Group Size
19
19
< select id ="groupsize " name ="groupsize ">
20
20
< option value ="2 "> 2</ option >
21
- < option value ="3 "> 3</ option >
21
+ < option value ="3 " selected > 3</ option >
22
22
< option value ="4 "> 4</ option >
23
23
< option value ="5 "> 5</ option >
24
24
< option value ="6 "> 6</ option >
@@ -38,7 +38,7 @@ <h2>Peer Instruction: {{=assignment_name}}</h2>
38
38
class ="btn btn-info "
39
39
onclick ="makePartners(event) "
40
40
>
41
- Enable Discussion
41
+ Enable Text Chat
42
42
</ button >
43
43
< button
44
44
type ="button "
You can’t perform that action at this time.
0 commit comments