1.1.0 • Published 5 years ago

ember-timer v1.1.0

Weekly downloads
8
License
MIT
Repository
github
Last release
5 years ago

ember-timer

A contextual component to show a countdown timer. Uses Moment.js

Compatibility

  • Ember.js v2.18 or above
  • Ember CLI v2.13 or above
  • Node.js v8 or above

Installation

ember install ember-timer

Usage

The timer component expects a to argument which is Moment Object. And an optional onEnd argument, which is called after timer ends.

<Timer 
    @to={{countToMomentObject}} 
    @onEnd={{action "onEnd"}}
as |t|/>
    DaysLeft: {{t.days}}
    HoursLeft: {{t.hours}}
    MinutesLeft: {{t.minutes}}
    SecondsLeft: {{t.seconds}}
</Timer>

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.