$(function () {
// TEST
let echo = function () {
$('#echo1').append('Hits 0, restarting... ');
}
$('#test1').countdownTimer({
seconds: 10,
loop: true,
callback: echo
});
$('#test2').countdownTimer({
seconds: 1000,
loop: false
});
});
