Switch checkbox styling to new style in #invite.

The checkboxes in invite are now converted in this commit to the new
style.
This commit is contained in:
Brock Whittaker
2017-04-20 16:47:14 -07:00
committed by Tim Abbott
parent 3ff55034fe
commit f599b517d3

View File

@@ -1,12 +1,15 @@
{{! Client-side Mustache template for rendering subscriptions in the "invite user" form.}}
<a href="#" class="invite_check_all_button">{{t "Check all" }}</a> |
<a href="#" class="invite_uncheck_all_button">{{t "Uncheck all" }}</a>
<div id="invite-stream-checkboxes">
<div id="invite-stream-checkboxes" class="new-style">
{{#each streams}}
<label class="checkbox">
<input type="checkbox" name="stream" value="{{name}}"
{{#if default_stream}}checked="checked"{{/if}} /> {{name}}
{{#if default_stream}}checked="checked"{{/if}} />
<span></span>
{{#if invite_only}}<i class="icon-vector-lock"></i>{{/if}}
<label class="inline-block">{{name}}</label>
</label>
{{/each}}
</div>