ng-notie
v0.0.1
Published
AngularJS wrapper for notie.js.
Downloads
17
Maintainers
Readme
ng-notie
AngularJS wrapper for notie.js which was created by Jared Reich.
Documentation
This isn't the original project see it here.
Installation with npm and browserify:
$ npm install ng-notieIn your js file:
require('ng-notie');
var app = angular.module('yourApp', ['ngNotie'])
app.controller('MainCtrl', function (notie) {
notie.alert(1, 'Success!', 1.5);
});
