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

Commit aa4760b

Browse files
committed
Bug fix: use .html to render multiple choice options
1 parent 340bd04 commit aa4760b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runestone/assess/js/timedmc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ TimedMC.prototype.renderMCFormOpts = function () {
8585
// Create the label for the input
8686
var label = document.createElement("label");
8787
$(label).attr("for", optid);
88-
$(label).text(this.answerList[k].content);
88+
$(label).html(this.answerList[k].content);
8989

9090
// create the object to store in optionArray
9191
var optObj = {

0 commit comments

Comments
 (0)