travis-web/app/templates/layouts/flash.hbs
Piotr Sarnacki df4b715ce9 Fix broadcasts
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.
2015-09-03 11:22:11 +02:00

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}}