An open API service indexing awesome lists of open source software.

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.

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");
}
});

...