summaryrefslogtreecommitdiff
path: root/src/templates/templates/question-image.ftl
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/templates/question-image.ftl')
-rw-r--r--src/templates/templates/question-image.ftl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/templates/templates/question-image.ftl b/src/templates/templates/question-image.ftl
index f117256..0cf815c 100644
--- a/src/templates/templates/question-image.ftl
+++ b/src/templates/templates/question-image.ftl
@@ -1,9 +1,9 @@
<div class="imageQuestion question">
<#list question.answers?keys as answerid>
<#if selectedAnswerId?? && answerid == selectedAnswerId>
- <a href="#" class="answer" id="${answerid}" onclick="selectAnswer(this)" class="selected"><img src="${staticRoot}/images/${question.id}-${answerid}.png" alt="${question.answers[answerid]!}" /></a>
+ <img class="answer selected" id="${answerid}" onclick="selectAnswer(this)" src="${staticRoot}/images/${question.id}-${answerid}-hover.jpg" />
<#else>
- <a href="#" class="answer" id="${answerid}" onclick="selectAnswer(this)" class="answer"><img src="${staticRoot}/images/${question.id}-${answerid}.png" alt="${question.answers[answerid]!}" /></a>
+ <img class="answer" id="${answerid}" onclick="selectAnswer(this)" src="${staticRoot}/images/${question.id}-${answerid}.jpg" />
</#if>
</#list>
</div>