1.0.0 • Published 6 years ago

mw-loader v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

mw-loader

AngularJS module that give you a cool loader animation on an element.

Requirements (tested in)

  • Angular (v1.6.9)

Install

You can install this package either with npm or with bower.

npm

npm install mw-loader --save

bower

bower install mw-loader

Usage

Once the script is included in your html file, simply include the module in your app:

angular.module('myApp', ['mw-loader']);

And trigger a 'mw-loader-on' event thusly:

$rootScope.$broadcast('mw-loader-on');

The Loader will be closed if you trigger the 'mw-loader-off' event:

$rootScope.$broadcast('mw-loader-off');

You can pass the parameter 'timeout' to the event to hide the loader automaticly after a while

$rootScope.$broadcast('mw-loader-on', {"timeout": 1000});

Config

NameTypeDefaultDescription
parent_selectorstringbodyset the parent selector for the alert
on_startupinttrueshould the loader be active on startup
templateUrlstringmw-alert.htmlset the template URL

Demo

View demo on Plunker

Example

Loader example

Tasklist

  • fix spelling, grammar mistakes