Add js timer with 1min interval to refresh page, relates to issue #14.

This commit is contained in:
jkaplon 2015-09-03 11:34:47 -04:00
parent e90141a070
commit eb679b8898

View File

@ -11,3 +11,11 @@
<div>
<h4 class="text-center">Prior update was: {{values.1.status}} at {{values.1.pubDate}}, {{values.1.pubTime}}</h4>
</div>
<script>
setTimeout(
function() {
location.reload();
}, 60000
);
</script>