Zero of time quantity should be plural
Let's say there's 172 hours in a countdown (1 week and 4 hours.) jQuery.countdown will display this as:
1 week 0 day 4 hours
but according to proper pluralization, this should be:
1 week 0 days 4 hours
Actually, I found the solution, on line 114,
if (Math.abs(count) > 1) {
should be:
if (Math.abs(count) !== 1) {
Made a pull request, let me know if I did this right
Just noticed the same issue, and your fix works for me :)
Bump. This is still an issue, and such a simple fix.
Indeed - please fix!
Still an issue. Please fix.
Actually, I found the solution, on line 114,
if (Math.abs(count) > 1) {should be:
if (Math.abs(count) !== 1) {
This works. Thanks.