Add js timer with 1min interval to refresh page, relates to issue #14.
This commit is contained in:
parent
e90141a070
commit
eb679b8898
@ -11,3 +11,11 @@
|
|||||||
<div>
|
<div>
|
||||||
<h4 class="text-center">Prior update was: {{values.1.status}} at {{values.1.pubDate}}, {{values.1.pubTime}}</h4>
|
<h4 class="text-center">Prior update was: {{values.1.status}} at {{values.1.pubDate}}, {{values.1.pubTime}}</h4>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
setTimeout(
|
||||||
|
function() {
|
||||||
|
location.reload();
|
||||||
|
}, 60000
|
||||||
|
);
|
||||||
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user