Skip to content
Snippets Groups Projects
Commit 8e98e59c authored by Prem Sichanugrist's avatar Prem Sichanugrist
Browse files

Cleanup show answer code

parent 35202817
No related branches found
No related tags found
No related merge requests found
......@@ -45,17 +45,14 @@ class @Problem
$.each response, (key, value) =>
if $.isArray(value)
for choice in value
@$("label[for='input_#{key}_#{choice}']").attr
correct_answer: 'true'
@$("label[for='input_#{key}_#{choice}']").attr correct_answer: 'true'
else
@$("#answer_#{key}").html(value) # needs to be html, not text, for complex solutions (eg coding)
@$("#solution_#{key}").html(value) # needs to be html, not text, for complex solutions (eg coding)
@$("#answer_#{key}, #solution_#{key}").html(value)
MathJax.Hub.Queue ["Typeset", MathJax.Hub]
@$('.show').val 'Hide Answer'
@element.addClass 'showed'
else
@$('[id^=answer_]').text ''
@$('[id^=solution_]').text ''
@$('[id^=answer_], [id^=solution_]').text ''
@$('[correct_answer]').attr correct_answer: null
@element.removeClass 'showed'
@$('.show').val 'Show Answer'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment