Skip to content

Instantly share code, notes, and snippets.

@objectivehtml
Created January 20, 2015 21:25
Show Gist options
  • Save objectivehtml/829fe9fb9c4bfe764dc8 to your computer and use it in GitHub Desktop.
Save objectivehtml/829fe9fb9c4bfe764dc8 to your computer and use it in GitHub Desktop.
clock = $('.clock').FlipClock(10, {
clockFace: 'HourlyCounter',
clockFaceOptions: {
countdown: true,
includeSeconds: true
},
onStop: function() {
console.log('Time finished (callback)');
}
});
clock.face.on('stop', function() {
console.log('Time finished (event)');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment