AngularJS wrapper around alertify.js
npm install ng-alertify --save
or bower install ng-alertify
.
Include the dist/ng-alertify.js
and dist/ng-alertify/css
files in your page and
use Alertify
module and dependency
angular.module('MyApp', ['Alertify'])
.run(function (Alertify) {
// these messages disappear after a few seconds
Alertify.success('Hello world!');
Alertify.log('Neutral message');
Alertify.error('Something went wrong',
'multiple params, including errors', new Error('are ok'));
// these modals require user to close them
Alertify.alert('Hi there');
// displays "Something went wrong multiple params, including errors are ok"
Alertify.confirm('Are you sure?').then(
function onOk() {...},
function onCancel() { ... }
);
Alertify.prompt('Your age', 21).then(
function onOk(answer) {...},
function onCancel() { ... }
);
// Pops dialog with JSON of the object
Alertify.json(object);
});
Tested with alertify.js v0.3.11
Works well with confirm-click.
Author: Kensho © 2015
Support: if you find any problems with this library, open issue on Github
The MIT License (MIT)
Copyright (c) 2015 Kensho
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.