Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 729 Bytes

File metadata and controls

51 lines (34 loc) · 729 Bytes

simple-bootstrap3-alerts

A simple alert package for Meteor using bootstrap 3.

Dependencies

Installation

meteor add steeve:simple-bootstrap-alerts

Adding 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

Clearing Alerts

  Alert.clear()

Handlebars

 {{> alert}}

Router Usage

 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.