Displays application bubble alerts (Growl style). Depends on twbs:bootstrap
package.
meteor add bojicas:bootstrap-alerts
- Add
{{> BootstrapAlerts}}
to your template / layout. - Call alerts with
Alerts.set('content', 'type')
, wheretype
can take following values:
success
info
warning
danger
Note that you can call Alerts.set('content');
(without a second parameter) in order to get an alert of danger
type.
MIT