1.1.0 • Published 8 years ago

angular-faux-loader v1.1.0

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

angular-faux-loader

Small utility directive for displaying a loading message while content/data is coming in.

NPM

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>