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

I am new to angular, I am using angular 4 and getting following error . ERROR Error: Uncaught (in promise): Error: Template parse errors: Can't bind to 'options' since it...

Hi, Before 4.0.1 I used the following to remove the icons, since 4.0.1 that doesn't work anymore. I checked the commits but couldn't find out if I had to change...

If I set a timeout of e.g. 5 sec, i.e. 5000 then depending on the computer I have either 8 secs or 30 secs. I guess that it is a...

can I personalize the css? change colors?

question

Some times the timer works as setup, e.g. 5000 ms, but very often it the progress continues on forever and the dialog never closes.

This line in the configuration: 'angular2-notifications': { main: './dist/index.js', defaultExtension: 'js' } points the entry point for this library. The problem is that /dist/index.js is a typescript (or ES6) file.......

GET http://../traceur 404 (Not Found) , when i add SimpleNotificationsModule to my app.module.ts, my import is: import { SimpleNotificationsModule } from 'angular2-notifications'; this is my systemjs.config.js map: { // our...

I'm not sure if the issue is related with my SystemJS setup or the module in itself. That being said, I run into to following error when adding angular2-notifications to...

Insert window check in isSupported, something like: isSupported() { if(typeof window !== "undefined") { return ('Notification' in window); } return false; } since window isn't defined on the server and...