angular-faux-loader
v1.1.0
Published
Directive for displaying a loading message while data is coming in
Downloads
1
Readme
angular-faux-loader
Small utility directive for displaying a loading message while content/data is coming in.
Installation
Installation is super easy, simply add the dependency to your build and add to your your input
# use npm
$ npm install angular-faux-loader
Add angular-faux-loader to your dependencies
angular
.module('yourApp', ['ngLoader', require('angular-faux-loader')])
.controller('SampleController', function () {})
Finally in your template you can add
<loader message="Loading..." min="100" loader-value="{{otherValue}}"></loader>