ember-notification-center v0.4.0
Ember Notification Center

Ember Notification Center is an Ember addon for managing and displaying notification messages.
Installation
As an addon
ember install ember-notification-center
For development
git clonethis repositorynpm installbower install
Usage
This addon provides an Ember Data notification model and a component for rendering such models.
The component can be used as follows, assuming that notifications is bound to
an array of notification model instances:
{{#notification-list notifications=notifications}}
Click me to view your notifications!
{{/notification-list}}This will render a button that displays a list of notifications when clicked. A message and creation date is displayed for each message.
Notifications with the important property set to true receive the
class important, while unseen notifications receive the additional
class new.
The notifications are ordered by date, but important notifications are
listed before ordinary ones. The maximum number of notifications to
show is determined by the property numNotifications, which is 3 by
default.
Below is an example of how the notification list can look when styled.

You can also specify the header property which will add a header to the notifications list.
{{#notification-list
header="Notification Header"
notifications=notifications}}
...
{{/notification-list}}Running Tests
npm test(Runsember try:testallto test the addon against multiple Ember versions)ember testember test --server
Building
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.