-
I had my FlipClock set to countdown to Oct. 4th at 9am. Everything was working fine until FlipClock hit zero... then this happened: http://resourcestage.ca/rs14/_conference-testCountdown.php I wante…
-
I am wanting to show a flipclock of randomized letters/numbers similar to a hashed value. After starting with a custom clock face, I am realizing that FlipClock may not be easily customizable to allow…
-
flipclock.js line 1200 the comma at the end of the line should be removed since there is nothing following.
-
I was trying to put the FlipClock on IE 7 but without success, after debug the code I found the follow error:
digitize: function(obj) {
....
data.push(value[x]);
....
The proble…
-
So I'm having a problem where mobile safari is crashing if I initiate flipclock. I'm currently investigating why - but it seems like it's an memory problem.
It's a known issue that iOS have trouble h…
-
If I try to add a jquery plugin, it not adds the related css to the head of index.html.
I have tried with
``` javascript
bower install --save FlipClock
grunt bowerInstall
```
the FlipClock.js is a…
-
When using flipclock.min.js, it doesn't stop when reaching 0, it goes into negative value and shows weird results.
But when using flipclock.js, it has no problem. So probably the 2 files are different…
-
It appears that if you overflow the maximum displayable time for a given counter, it adds the digit in the wrong(?) place:
```
$(document).ready(function() {
var clock = $('.clock').FlipCl…
-
I used FlipClock this way:
``` js
var clock = new FlipClock($el, { countdown: true, autoStart: false, clockFace: "MinuteCounter" });
clock.setTime(59);
setTimeout(function() {
clock.start();
}, …
-
I see there is a way to hide hours but what about going the other way and hiding seconds? It says in the doc "By default, there are 6 digits visible. HH:MM:SS". Can doc be added on how to change this…