Deprecation: Change {{#each x in y}} to {{#each y as |x|}}

This commit is contained in:
Robin Ward
2016-04-29 17:29:41 -04:00
parent acbec76411
commit 9ea32bf7d8
60 changed files with 112 additions and 99 deletions

View File

@@ -34,7 +34,7 @@
{{i18n 'admin.badges.preview.sample'}}
</p>
<ul>
{{#each html in processed_sample}}
{{#each processed_sample as |html|}}
<li>{{{html}}}</li>
{{/each}}
</ul>

View File

@@ -1,7 +1,7 @@
<div class="modal-body">
<div>
<ul class='badge-groupings'>
{{#each wc in workingCopy}}
{{#each workingCopy as |wc|}}
<li>
{{#if wc.editing}}
{{input value=wc.name}}