loicroot / jquery-countdown

Automatically exported from code.google.com/p/jquery-countdown
0 stars 0 forks source link

Add atome time interval #47

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Counter doesn't work on dd:hh:mm (it count seconds instead of minutes).
So you need to add the atom interval for the counter.

options = {
...
   minAtomTime: 1000, // 1 second by default
};

...
interval = setInterval(moveStep(digits.length - 1), options.minAtomTime);

Original issue reported on code.google.com by reshetn...@gmail.com on 11 May 2012 at 9:36