cmpb / angular-flash

A simple lightweight flash message module for angularjs

Home Page:http://sachinchoolur.github.io/angular-flash/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

license travis bower npm

angular-flash

A simple lightweight flash message module for angularjs.

Demo

angular-flash | jsfiddle | codepen

How to use

Bower

You can Install angular-flash using the Bower package manager.

$ bower install angular-flash-alert --save

npm

You can also find angular-flash on npm

$ npm install angular-flash-alert

Add the Following code to the <head> of your document.

<link type="text/css" rel="stylesheet" href="css/angular-flash.min.css" />
// If you are using bootstrap v3 no need to include angular-flash.css
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
<script src="angular-flash.min.js"></script>
// Do not include both angular-flash.js and angular-flash.min.js

Add flash dependency to your module

var myApp = angular.module("app", ["flash"])

Include <div flash-message="5000" ></div> directive in your html template.

<div flash-message="5000" ></div> 
<!-- 5000 milli-secs is the display duration.
     Flash alert will be automatically dismissed after 5000 milli-secs.
-->

Inject the Flash factory in your controller

myApp.controller('demoCtrl', ['Flash', function(Flash) {
    $scope.successAlert = function () {
        var message = '<strong>Well done!</strong> You successfully read this important alert message.';
        Flash.create('success', message, 'custom-class');
        // First argument (success) is the type of the flash alert
        // Second argument (message) is the message displays in the flash alert
        // you can inclide html as message (not just text)
        // Third argument (custom-class) is the custom class for the perticular flash alert
    }
}]);

####flash alert types####

  • success
  • info
  • warning
  • danger

Methods

Flash.pause();
// Pause flash auto dismiss.
Flash.dismiss()
// Dismiss the flash

MIT © Sachin

About

A simple lightweight flash message module for angularjs

http://sachinchoolur.github.io/angular-flash/

License:MIT License


Languages

Language:CSS 42.7%Language:HTML 33.8%Language:JavaScript 23.5%