mirror of
https://git.coolaj86.com/coolaj86/browser-authenticator.js
synced 2025-12-23 18:58:38 +00:00
11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
var countdown = $("#countdown").countdown360({
|
|
radius: 30,
|
|
seconds: 30,
|
|
fontColor: '#000',
|
|
autostart: false,
|
|
onComplete: function() {
|
|
console.log('done')
|
|
}
|
|
});
|
|
countdown.start();
|
|
console.log('countdown360 ', countdown); |