Skip to content

Commit

Permalink
v1.5.0
Browse files Browse the repository at this point in the history
Enhancements
------------

- Allow removing individual toasts
  ```js
  let item = this.toast.info('hello');
  this.toast.remove(item);
  ```
- Allow clearing individual toasts
  ```js
  let item = this.toast.info('hello');
  this.toast.clear(item);
  ```
- Save toasts to the `toasts` property and auto remove when hidden

Thanks to @baseballlover723 for PR #11
  • Loading branch information
Ilya Radchenko committed Jan 10, 2017
1 parent c095795 commit 1c51905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-toastr",
"version": "1.4.1",
"version": "1.5.0",
"description": "Ember wrapper for Toastr.js notifications",
"directories": {
"doc": "doc",
Expand Down

0 comments on commit 1c51905

Please sign in to comment.