Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angularjs-toast

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angularjs-toast

A Simple toast notification service for AngularJS pages

  • 1.0.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
100
decreased by-35.9%
Maintainers
1
Weekly downloads
 
Created
Source

angularjs-toast Build Status

angularjs-toast is a simple service for creating toast notification for AngularJS pages

live demo here

Getting Started

Installation

You can directly clone/download here

git clone git@github.com:Sibiraj-S/angularjs-toast.git

or cdn

Minified
//unpkg.com/angularjs-toast@latest/dist/angularjs-toast.min.js
//unpkg.com/angularjs-toast@latest/dist/angularjs-toast.min.css
Pretty Printed
//unpkg.com/angularjs-toast@latest/dist/angularjs-toast.js
//unpkg.com/angularjs-toast@latest/dist/angularjs-toast.css

or

Install via Package managers such as npm, yarn and bower

npm install angularjs-toast --save
# or
yarn add angularjs-toast
# or
bower install angularjs-toast --save

Usage

Import the modules required for angularjs-toast. It is necessary to include ngSanitize and ngAnimate for angularjs-toast to work

<-- styles -->
<link rel="stylesheet" href="angularjs-toast/dist/angularjs-toast.min.css">

<-- scripts -->
<script src="angular/angular.min.js"></script>
<script src="angular-sanitize/angular-sanitize.min.js"></script>
<script src="angular-animate/angular-animate.min.js"></script>

add angularjsToast dependency to the module

angular.module('myApp', ['angularjsToast'])

and in your controller

angular.controller('toastController', ['toast', function(toast){

   toast({
     duration  : 10000,
     message   : "Hi there!",
     className : "alert-success"
   });

}]);

Options

all options are type sensitive

PropertyTypeDefaultDescription
classstringalert-successthis applies / overrides the CSS for toast elements
durationnumber5000timeout for each toast messages to disappear
positionstringrightposition of the element can be 'left', 'center' and 'right'
containerstringbodyappends alert to the specific class or id or element. inputs should be like '.class' or '#id'
masterClassstring"adds class to the container for more flexibility in styling
messagehtml-string or stringHi there!can be HTML or plain string
dismissiblebooleantrueshow / hide the close icon. if set to false the toast will hide on timeout
maxToastnumber7maximum number of toast messages to show. if max reached the element inserted first will be removed
insertFromTopbooleantruesetting true will insert new messages on top else inserts at bottom
removeFromTopbooleanfalsesetting true removes last element on timeout else removes first element

Pull Requests

Send Pull Requests only to .coffeescript and .scss files only. JS and CSS files are generated by grunt

  • grunt webserver - sets up a local server with livereload

  • grunt develop - converts coffeescript files to js and watches for changes and enables livereload

  • grunt dist - converts, annotates, minifies coffeescript to js and also converts and minifies scss to css

Keywords

FAQs

Package last updated on 04 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc