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

@ -1,4 +1,4 @@
{{#each option in options}}
{{#each options as |option|}}
<li>
<div class="option">
<p>

View File

@ -8,7 +8,7 @@
{{/if}}
{{else}}
<ul>
{{#each option in poll.options}}
{{#each poll.options as |option|}}
{{poll-option option=option toggle="toggleOption"}}
{{/each}}
</ul>