Commit bac66ff0 by Stephen Sanchez

Merge pull request #537 from edx/sanchez/unhighlight-selected-options

Un highlight invalidated example options on edit
parents 112677ef 09f0002f
......@@ -123,6 +123,9 @@ OpenAssessment.StudentTrainingListener.prototype = {
if ($(criterionOption).val() == data.name) {
$(criterionOption).val("");
$(criterionOption).addClass("openassessment_highlighted_field");
$(criterionOption).click(function() {
$(criterionOption).removeClass("openassessment_highlighted_field");
});
changed = true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment