Skip to content

Commit

Permalink
Fixed issue #16416: image_select question theme : set width mlake inv…
Browse files Browse the repository at this point in the history
…alid HTML (#1738)
  • Loading branch information
gabrieljenik committed Feb 4, 2021
1 parent f887582 commit 75da027
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -47,9 +47,9 @@ question_template_attribute.horizontal_scroll : {{question_template_attribute.

<img class="unforce-height" src="{{ answer }}"
style="{%if question_template_attribute.fix_width > 1%}
width: {{question_template_attribute.fix_width}}px
width: {{question_template_attribute.fix_width}}px;
{% endif %} {%if question_template_attribute.fix_height > 1%}
height: {{question_template_attribute.fix_height}}px
height: {{question_template_attribute.fix_height}}px;
{% endif %}"/>
</label>
</div>
Expand Down
Expand Up @@ -49,9 +49,9 @@ question_template_attribute.horizontal_scroll : {{question_template_attribute.

<img class="unforce-height" src="{{ question }}"
style="{%if question_template_attribute.fix_width > 1%}
width: {{question_template_attribute.fix_width}}px
width: {{question_template_attribute.fix_width}}px;
{% endif %} {%if question_template_attribute.fix_height > 1%}
height: {{question_template_attribute.fix_height}}px
height: {{question_template_attribute.fix_height}}px;
{% endif %}"/>
</label>
</div>
Expand Down

0 comments on commit 75da027

Please sign in to comment.