Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 581 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 581 Bytes

ic-progress-bar

Usage

{{#ic-progress-bar max=maxValue value=currentValue on-complete='completed'}}
  Score
{{/ic-progress-bar}}
App.ApplicationController = Ember.Controller.extend({
  maxValue: 50,
  currentValue: 75,
  actions: {
    completed: function() {
      //yeah the progress bar hit 100
    }
  }
});

Contributing

After cloning this repo, install dependencies:

$ npm install
$ bower install

Fire up the grunt watcher:

$ grunt

Then in a different tab run your tests with testem:

$ testem