lemonldap-ng/lemonldap-ng-portal/site/coffee/info.coffee
2017-01-19 21:48:07 +00:00

28 lines
429 B
CoffeeScript

# Timer for information page
i = 30
_go = 1
stop = () ->
_go = 0
$('#timer').html("...");
go = () ->
$("#form").submit() if _go
timer = () ->
h = $('#timer').html()
i-- if i>0
h = h.replace /\d+/, i
$('#timer').html(h)
window.setTimeout timer, 1000
$(document).ready ->
if window.datas['activeTimer']
window.setTimeout go, 10000
window.setTimeout timer, 1000
else
stop
$("#wait").on 'click', () ->
stop()