lemonldap-ng/lemonldap-ng-portal/site/coffee/confirm.coffee

22 lines
407 B
CoffeeScript
Raw Normal View History

2017-01-19 22:48:07 +01:00
# Timer for confirmation page
i = 5
go = () ->
$("#form").submit()
timer = () ->
h = $('#timer').html()
i-- if i>0
h = h.replace /\d+/, i
$('#timer').html h
setTimeout timer, 1000
$(document).ready ->
setTimeout go, 5000
setTimeout timer, 1000
$(".idploop").on 'click', () ->
$("#idp").val $(this).attr("val")
$("#refuse").on 'click', () ->
$("#confirm").attr "value", $(this).attr("val")