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

Commit ac29e60

Browse files
committed
Fix: html feedback
1 parent bdf67b3 commit ac29e60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runestone/mchoice/js/timedmc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default class TimedMC extends MultipleChoice {
4242
feedbackTimedMC() {
4343
for (var i = 0; i < this.indexArray.length; i++) {
4444
var tmpindex = this.indexArray[i];
45-
$(this.feedBackEachArray[i]).text(
45+
$(this.feedBackEachArray[i]).html(
4646
String.fromCharCode(65 + i) + ". " + this.feedbackList[i]
4747
);
4848
var tmpid = this.answerList[tmpindex].id;

0 commit comments

Comments
 (0)