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

Commit 43d04c2

Browse files
committed
bug fix, missing parens on call
1 parent 04beda5 commit 43d04c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runestone/assess/js/mchoice.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ MultipleChoice.prototype.restoreMultipleSelect = function () {
313313
$(this.optionArray[b].input).attr("checked", "true");
314314
}
315315
}
316-
this.enableMCComparison;
316+
this.enableMCComparison();
317317
} // end for
318318
} // end if
319319
} // end if len > 0
@@ -335,7 +335,7 @@ MultipleChoice.prototype.restoreRadio = function () {
335335
$(this.optionArray[b].input).attr("checked", "true");
336336
}
337337
}
338-
this.enableMCComparison;
338+
this.enableMCComparison();
339339
} // end if not null
340340
} // end if (len > 0)
341341
};

0 commit comments

Comments
 (0)