
For some reason using property.[] stopped working in flash controller, so I'm using length for now, which should work properly in case of broadcasts as they're loaded only once anyway.
7 lines
184 B
Handlebars
7 lines
184 B
Handlebars
{{#each flash in messages}}
|
|
{{#view "flash-item" flashBinding="flash"}}
|
|
<p>{{{flash.message}}}</p>
|
|
<a class="close" {{action "close" target=view}}></a>
|
|
{{/view}}
|
|
{{/each}}
|