0.0.1 • Published 8 years ago

ng-notie v0.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

ng-notie

AngularJS wrapper for notie.js which was created by Jared Reich.

npm.io

Documentation

This isn't the original project see it here.

Installation with npm and browserify:

$ npm install ng-notie

In your js file:

require('ng-notie');
var app = angular.module('yourApp', ['ngNotie'])
app.controller('MainCtrl', function (notie) {
  notie.alert(1, 'Success!', 1.5);
});