Skip to content
Snippets Groups Projects
Commit f1dff60b authored by Rolf Niepraschk's avatar Rolf Niepraschk
Browse files

"setTimer" -> "setInterval"

parent 917635f6
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,6 @@ define(['jquery'], function ($) {
$('#vl-rfoot > div').html(h + ':' + m + '<br />' +
'<span style="font-size:65%;">' + Y + '-' + M + '-' + D + '</span>');
$(document).trigger('vl.page.timer');
setTimeout(showTime, 10000);
}
/**
......@@ -180,7 +179,7 @@ define(['jquery'], function ($) {
$('#vl-rfoot').append('<div></div>');
}
showTime();
showTime(); setInterval(showTime, 10000);
if (typeof clbk == 'function') clbk();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment