Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 0deb386

Browse files
committed
Always allow instructors to see feedback on mchoice
1 parent dd75ea5 commit 0deb386

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

runestone/mchoice/js/mchoice.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ export default class MultipleChoice extends RunestoneBase {
375375
if (logFlag) {
376376
this.logMCMAsubmission();
377377
}
378-
if (!eBookConfig.peer) {
378+
if (!eBookConfig.peer || eBookConfig.isInstructor) {
379379
this.renderMCMAFeedBack();
380380
if (this.useRunestoneServices) {
381381
this.enableMCComparison();
@@ -522,7 +522,7 @@ export default class MultipleChoice extends RunestoneBase {
522522
}
523523

524524
scoreMCMFSubmission() {
525-
this.answer = this.givenArray[0]
525+
this.answer = this.givenArray[0];
526526
if (this.givenArray[0] == this.correctIndexList[0]) {
527527
this.correct = true;
528528
this.percent = 1.0;
@@ -667,7 +667,6 @@ export default class MultipleChoice extends RunestoneBase {
667667
this.optionArray[i].input.disabled = false;
668668
}
669669
}
670-
671670
}
672671

673672
/*=================================

0 commit comments

Comments
 (0)