tomi:semantic-ui-growl

Modified jQuery plugin that turns standard Semantic-UI alerts into Growl-like notifications.


Install
meteor add tomi:semantic-ui-growl@=1.0.0

Documentation

semantic-ui-growl - Meteor Smart Package

This is modified jQuery plugin bootstrap growl jquery plugin to be used with Semntic UI.

Extra option is: * header: String - which renders the header of the growl message

Forked from https://github.com/TimHeckel/meteor-bootstrap-growl

How to use?

  1. Install with meteor add tomi:semantic-ui-growl

Example use:

$.semanticUiGrowl('My message', {
    header: 'My Header'
  });

Default Options

$.semanticUiGrowl.defaultOptions = {
  ele: 'body',
  type: 'info',
  offset: {
    from: 'top',
    amount: 20
  },
  align: 'right',
  width: 250,
  delay: 4000,
  allow_dismiss: true,
  stackup_spacing: 10
};