mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
a4f8088697
closes #2417 - Adds Notification(s)Component - Render notifications in application.hbs - Adds handleError in application route
7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
var NotificationsComponent = Ember.Component.extend({
|
|
tagName: 'aside',
|
|
classNames: 'notifications',
|
|
messages: Ember.computed.alias('notifications')
|
|
});
|
|
|
|
export default NotificationsComponent; |