Reputation: 695
I call Jquery FlipClock with the following parameters. The first number I see is 939,511,314. But after that, it works perfectly. Obviously this is not really causing a huge problem, but it's very odd. I'm wondering if anyone else has seen this?
clock = new FlipClock($(selector), 40620004, {
clockFace: "Counter",
autoStart: true,
minimumDigits: 9
});
setTimeout(function () {
setInterval(function () {
clock.increment(22);
}, 1000);
});
Upvotes: 0
Views: 36