Browse Source
Merge pull request #4962 from abpframework/mehmet-erim-patch-1
Fixed an instance name in Toaster-Service.md
pull/5033/head
Erol Arkat
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
2 deletions
-
docs/en/UI/Angular/Toaster-Service.md
|
|
|
@ -74,10 +74,11 @@ The open toast overlay can be removed manually via the `remove` method by passin |
|
|
|
```js |
|
|
|
const toastId = this.toaster.success('Message', 'Title') |
|
|
|
|
|
|
|
this.toast.remove(toastId); |
|
|
|
this.toaster.remove(toastId); |
|
|
|
``` |
|
|
|
|
|
|
|
### How to Remove All Toasts |
|
|
|
|
|
|
|
### How to Remove All Toasts |
|
|
|
|
|
|
|
The all open toasts can be removed manually via the `clear` method: |
|
|
|
|
|
|
|
|