Skip to content

Commit

Permalink
mod_editor_tinymce: fix check for crop checkbox.
Browse files Browse the repository at this point in the history
  • Loading branch information
mworrell committed Mar 2, 2017
1 parent a05e4c0 commit 0c6d85a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<div class="controls">
<div class="checkbox">
<label>
<input type="checkbox" name="crop" {% if options.crop == 'crop' %}checked{% endif %} value="crop" id="a-crop">
<input type="checkbox" name="crop" {% if options.crop %}checked{% endif %} value="crop" id="a-crop">
{_ Crop image _}
</label>
</div>
Expand Down

0 comments on commit 0c6d85a

Please sign in to comment.