A Java Script Notification plugin. Implements Google Material Design Snackbar Design Specs.
//Basic usage
notify("Notification Text goes here");
//Advanced Usage
notify("Advanced Notification", {duration: 2500, onAction: actionHandler, onFinish: finishHandler});
- duration: Duration of the notification (default - 5 seconds)
- onAction: fired when the notification object is clicked
- onFinish: fired when the notification duration finsihes and the object is removed
- Add animation while displaying Notification