mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 12:44:57 +03:00
48b0ba6ca9
Issue #3160 - Use notifications API to display available update notification. - Remove update_notification handlebars helper as now both the check for an available update and the notification handling is run from the server's admin controller index method. - Bind the notification's location property to a css class for styling. - Refactor Ember notifications to better handle notification objects. Move responsibility for css class generation onto the notification component. - Refactor gh-notifications component to take a location argument that's used to assign a css class and filter notifications.
6 lines
241 B
Handlebars
6 lines
241 B
Handlebars
<section {{bind-attr class=":js-notification typeClass"}}>
|
|
<span class="notification-message">
|
|
{{{message.message}}}
|
|
</span>
|
|
<a class="close" {{action "closeNotification"}}><span class="hidden">Close</span></a>
|
|
</section> |