Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
angular-flash-alert
Advanced tools
A simple lightweight flash message module for angularjs.
angular-flash | jsfiddle | codepen
You can Install angular-flash using the Bower package manager.
$ bower install angular-flash-alert --save
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####
Flash.pause();
// Pause flash auto dismiss.
Flash.dismiss()
// Dismiss the flash
FAQs
Flash message for AngularJS and Bootstrap
The npm package angular-flash-alert receives a total of 1,617 weekly downloads. As such, angular-flash-alert popularity was classified as popular.
We found that angular-flash-alert demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.