Skip to content

Latest commit

 

History

History
109 lines (65 loc) · 2.78 KB

CHANGELOG.md

File metadata and controls

109 lines (65 loc) · 2.78 KB

Changelog

v 1.5.3 (6/11/15)

  • Gulp build system added thanks to @HHsnopek

v 1.5.1 (6/10/15)

  • Some small improvements that clean up the code a little

v 1.5.0 (5/18/15)

  • Adds support for AMD (asynchronous module definition) thanks to @vash15

v 1.4.0 (5/8/15)

  • Change class name from "countUp" to "CountUp"
  • Add pauseResume() method
  • Deprecate stop() and resume() methods
  • Add update() documentation
  • Slight tweak to update()

v 1.3.3 (3/24/15)

  • Adds update method to avoid having to re-initialize to count to a new value thanks to @aludvigsen
  • Extends options with passed options rather than replacing them thanks to @goddomotfronk

v 1.3.2 (12/4/14)

  • Added abillity to count in svg text elements.

v 1.3.1 (9/1/14)

  • Fixed bug where if endVal = 0, countUp would display ‘—‘

v 1.3.0 (8/21/14)

  • Adds support for inputs thanks to @kmclaugh

v 1.2.0 (6/9/14)

  • Adds prefixes and suffixes (such as "$" and "%") thanks to @marjan-georgiev

v 1.1.2 (6/9/14)

  • Fixes a bug where start() -> stop() -> resume() -> reset() would reset to the number stopped at. Thanks to @youxiachai for finding this one

v 1.1.1 (5/13/14)

  • Fixes a bug where an empty separator (“”) specified in the options object would cause the browser tab to become unresponsive if the endVal was a 4+ digit number. Special thanks to @sgtmercs for finding this bug and creating an issue.

v 1.1.0 (2/21/14)

  • now accepts an optional options object that allows for globalized number formatting
  • you can now optionally set the character of the separator and the decimal
  • grouping (ie, 1,000,000 vs 1000000) is now optional

v 1.0.3 (2/7/14)

  • fixed bug that caused start() not to work if reset() was previously called (oops)

v 1.0.2 (1/30/14)

  • now allows target to be either an id or var of a previously selected html element thanks to @jackrugile

v 1.0.1 (1/30/14)

  • fixed a bug that caused the resume method not to work if counting down

v 1.0.0 (1/23/14)

  • no changes, just officially made it a production version

v 0.0.6 (1/17/14)

  • added resume method
  • format startVal on initialization

v 0.0.5 (1/17/14)

  • added stop method
  • fixed reset method
  • improved demo to include stop, reset, callback and code visualization

v 0.0.4 (1/16/14)

  • added callback thanks to @retasretas
  • added requestAnimationFrame() polyfill to support IE8 and other browsers without native rAF support

v 0.0.3 (1/13/14)

  • added startVal param
  • ability to count in either direction
  • ability to toggle easing
  • added minified version thanks to @HHSnopek

v 0.0.2 (1/13/14)

  • coffeescript version added thanks to @HHSnopek
  • bower & component support
  • changelog added
  • bug fixes and improvements thanks to @lifthrasiir

v 0.0.1 (12/31/13)

  • initial release