Favicon Notification
A small script to add notification bubble to favicon
Demo
Favicon
If you don't have a nice favicon set on app, read this: https://github.com/audreyr/favicon-cheat-sheet
Installing
NPM:
Run:
npm install favicon-notification
Bower
Run
bower install favicon-notification
Using
NPM
If you are using Webpack or Browserify, do:
var FaviconNotification = ; // When your app loadsFaviconNotification; // On some eventFaviconNotification; // If you want to remove the notificationFaviconNotification;
AMD
If you are using RequireJS, for example, load normally (remeber to set the alias in your RequireJS config):
;
Bower
Load the script file:
Methods
.init(options)
This script assumes that you have a /favicon.ico
set. See how setup your favicon. If are you using another path to your favicon, you can set it by passing some options to this method. You can set a different fill and line color too (defaults are fill red and white line).
FaviconNotification;
.add()
As the name says, this add the notification bubble to the favicon. If you didn't initialized the script using .init(options)
, this will use the default options to create and set the new favicon with the notification.
FaviconNotification;
.remove()
FaviconNotification;