// Generated by CoffeeScript 1.12.8 (function() { var go, i, timer, timerIsEnabled; i = 5; timerIsEnabled = 0; go = function() { if (timerIsEnabled) { return $("#form").submit(); } }; timer = function() { var h; h = $('#timer').html(); if (h) { timerIsEnabled = 1; if (i > 0) { i--; } h = h.replace(/\d+/, i); $('#timer').html(h); return setTimeout(timer, 1000); } }; $(document).ready(function() { setTimeout(go, 30000); setTimeout(timer, 1000); return $("#refuse").on('click', function() { return $("#confirm").attr("value", $(this).attr("val")); }); }); }).call(this);