https://github.com/vatri/angularjs-simple-bootstrap-alert
AngularJS directive for showing a nice Twitter Bootstrap alerts.
https://github.com/vatri/angularjs-simple-bootstrap-alert
Last synced: 25 days ago
JSON representation
AngularJS directive for showing a nice Twitter Bootstrap alerts.
- Host: GitHub
- URL: https://github.com/vatri/angularjs-simple-bootstrap-alert
- Owner: vatri
- Created: 2017-01-12T14:17:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-12T17:01:15.000Z (over 9 years ago)
- Last Synced: 2025-11-06T23:29:32.274Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# angularjs1-btAlertMessage
AngularJS 1.x module for easy showing a nice Twitter Bootstrap alert messages...
**Example of use:**
...
var app = angular.module('App', ['btAlertMessage']);
app.controller("myController", function(btAlertMessageService,$scope){
$scope.showMessage = function(){
btAlertMessageService.showMessage("First message", "success");
}
});
...