lemonldap-ng/lemonldap-ng-portal/site/htdocs/static/common/js/globalLogout.js
2020-10-12 14:55:46 +02:00

33 lines
644 B
JavaScript

// Generated by CoffeeScript 1.12.8
(function() {
var go, i, timer;
i = 30;
go = function() {
return $("#globallogout").submit();
};
timer = function() {
var h;
h = $('#timer').html();
if (i > 0) {
i--;
}
h = h.replace(/\d+/, i);
$('#timer').html(h);
return window.setTimeout(timer, 1000);
};
$(document).ready(function() {
$(".data-epoch").each(function() {
var myDate;
myDate = new Date($(this).text() * 1000);
return $(this).text(myDate.toLocaleString());
});
window.setTimeout(go, 30000);
return window.setTimeout(timer, 1000);
});
}).call(this);