angular2-notifications icon indicating copy to clipboard operation
angular2-notifications copied to clipboard

A light and easy to use notifications library for Angular.

Results 97 angular2-notifications issues
Sort by recently updated
recently updated
newest added

When I receive a certain event, I'm doing this kind of logic: ``` // activeNotifications is a wrapper around the Notification object with additional domain-specific metadata. const activeNotif = this.activeNotifications.find((notif)...

It's really hard to learn how the code looked like at some specific version.

Hi. I'm getting a error in one of my projects only with AOT build. In my app.module.ts I have imported it just like the documentation says: ````import {BrowserModule} from '@angular/platform-browser';...

I am not sure if this is a bug or intended behavior, so I wanted to ask here: https://stackblitz.com/edit/angular2-notifications-example-exd7xw?file=app/example.component.ts OnChanges is triggered multiple/infinite times in this example due to an...

$event return mouse event how to get notification id which is assigned while creating notification this._notificationsService.success( 'Some Title', 'Some Content', { timeOut: 5000, showProgressBar: true, pauseOnHover: false, clickToClose: false, maxLength:...

Hi, just looking for information/help. I'm trying to use the notification service along with a custom exception handler class that extends Angular 2's ExceptionHandler. ``` @Injectable() export class MyExceptionHandler extends...

help wanted

Hey, I'm getting this error when I click the notification for it to disappear. ``` Uncaught Error: ViewDestroyedError: Attempt to use a destroyed view: detectChanges at viewDestroyedError (core.js:9800) at Object.debugUpdateDirectives...

Using version `0.9.7` Since last time I've updated my packages, I'm getting this compilation error: `ERROR in src/app/app.module.ts(22,43): error TS2307: Cannot find module 'angular2-notifications'.` Apparently, replacing: `import { SimpleNotificationsModule }...

bug

I get this error in the console: `The user hasn't granted you permission to send push notifications` Although I did called `this._notificationServie.requestPermission(); ` This is my AppComponent class: ``` import...