Skip to content

Commit 074897a

Browse files
committed
Added a "Last update" line showing when the last incubator communicated
1 parent 2257bd5 commit 074897a

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

smart_incubator/server/static/css/style.css

+12
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,20 @@
6666
color: #777;
6767
text-decoration: none;
6868
}
69+
70+
.last-update {
71+
color: #777;
72+
float: left;
73+
padding: 15px 15px;
74+
font-size: 14px;
75+
line-height: 20px;
76+
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
77+
color: #777;
78+
text-decoration: none;
79+
}
6980

7081

82+
7183
.navbar-right {
7284
float: right!important;
7385
margin-right: -15px;

smart_incubator/server/static/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@
6565
<div class="container">
6666
<div class="navbar-header">
6767
<a class="navbar-brand" href="/">Incubators</a>
68-
<div class="current-time"></div>
68+
<span class="current-time"></span>
69+
<span class="last-update"></span>
6970
</div>
7071
<ul class="nav navbar-nav navbar-right">
7172
<li><a href="/serial" target="_blank">SerialMonitor </a></li>

smart_incubator/server/static/js/script.js

+3
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ function refreshDashboard(){
104104

105105
$('#' + item.inc_id).find('.time').find("p").html(item.device_time);
106106
$('#' + item.inc_id).find('.time').attr('title', timestamp);
107+
108+
var elapsed = moment().utc() - moment( timestamp * 1000);
109+
$('.last-update').text("Last update: " + Math.floor(elapsed / 60000 / 60) + " mins ago")
107110

108111
})
109112
});

0 commit comments

Comments
 (0)