1.0.1 • Published 8 years ago

ngBrowserNotification v1.0.1

Weekly downloads
3
License
-
Repository
github
Last release
8 years ago

ngBrowserNotification

Displaying desktop notifications to the user.

Installation

npm install ngBrowserNotification

Usage

/* Creating module with dependency */
angular.module('myApp', ['notification'])
    .controller('MyCtrl', ['$scope', 'notification', function ($scope, notification) {
        /* Notification title, message and icon */
        notification('New message', 'Notification body', 'path/to/icon.png');
    }]);