Fix problems found by SASS Lint

This commit is contained in:
Chris Hill-Scott
2016-02-08 11:11:55 +00:00
parent 0201825c45
commit 3f365058ef
12 changed files with 111 additions and 108 deletions

View File

@@ -1,9 +1,6 @@
{% macro sms_message(
body, recipient=None, name=None, id=None, edit_link=None, input_name=None, input_index=None
body, recipient=None, name=None, id=None, edit_link=None
) %}
{% if input_name %}
<label class="sms-message-option" for="{{ input_name }}-{{ input_index }}">
{% endif %}
{% if name %}
<h3 class="sms-message-name">
{% if edit_link %}
@@ -13,9 +10,6 @@
{% endif %}
</h3>
{% endif %}
{% if input_name %}
<input class="sms-message-picker" type="radio" id="{{ input_name }}-{{ input_index }}" name="{{ input_name }}" value="{{ input_index }}" />
{% endif %}
<div class="sms-message-wrapper{% if input_name %}-with-radio{% endif %}">
{{ body|placeholders }}
</div>
@@ -29,7 +23,4 @@
Template ID: {{ id }}
</p>
{% endif %}
{% if input_name %}
</label>
{% endif %}
{% endmacro %}