// Generated by CoffeeScript 1.12.7 (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() { window.setTimeout(go, 30000); return window.setTimeout(timer, 1000); }); }).call(this);