From 939c2f234d68e57587541ce0296686d589227248 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Thu, 28 Jun 2012 21:51:07 +0000 Subject: [PATCH] Add the link type to answer buttons. --- xtrn/hamtest/999-hamtest.ssjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtrn/hamtest/999-hamtest.ssjs b/xtrn/hamtest/999-hamtest.ssjs index d7b00e95ca..604bdebc6c 100644 --- a/xtrn/hamtest/999-hamtest.ssjs +++ b/xtrn/hamtest/999-hamtest.ssjs @@ -157,7 +157,7 @@ else { var ans; while(q.question.answers.length) { ans=q.question.answers.splice(random(q.question.answers.length),1)[0]; - print('<button style="border-style: none" '+(q.failed[ans]!=undefined?'disabled class="backDropColor" ':'class="standardColor" ')+'type="submit" name="answer" value="'+encode(ans)+'">'+encode(ans)+'</button></br>'); + print('<button style="border-style: none;" '+(q.failed[ans]!=undefined?'disabled class="backDropColor" ':'class="standardColor link" ')+'type="submit" name="answer" value="'+encode(ans)+'">'+encode(ans)+'</button></br>'); } print('</div><br>'); print(correct+' out of '+(correct+wrong)+' correct, '+(test.question_list.length+1)+' remaining.'); -- GitLab