A simple alert package for Meteor using bootstrap 3.
meteor add steeve:simple-bootstrap-alerts
Alert.add(msg, type);
Types: success, info, warning, danger
msg can be text or an Error object. If Error object it will display Error.reason
Alert.clear()
{{> alert}}
before: function(){
Alert.clear();
}
or :
onStop: function() {
Alerts.clear();
}
``
# License
Copyright (c) 2013 [EtherPOS](http://www.etherpos.com/ "EtherPOS, LLC"). Released under an MIT license.