Convert UTC dates/times to local times.
This commit is contained in:
parent
f43d6a9d19
commit
ccfdce32b0
@ -80,6 +80,8 @@ app.get('/', function(req, res){
|
||||
|
||||
// Loop over elements in rows array, convert ugly UTC times to pretty local times.
|
||||
rows.forEach(function(row){
|
||||
row.pubDate = courtsopenUtils.getLocDateFromUTC(row.published_at);
|
||||
row.pubTime = courtsopenUtils.getLocTimeFromUTC(row.published_at);
|
||||
if(row.status.toLowerCase().indexOf('closed') > -1){
|
||||
row.statusClass = 'closed';
|
||||
} else { row.statusClass = 'open'; }
|
||||
|
@ -7,6 +7,10 @@
|
||||
<h2>{{values.0.status}}</h2>
|
||||
</div>
|
||||
<br />
|
||||
<h3>Update received, {{values.0.published_at}}</h3>
|
||||
<div>
|
||||
<h3>Update received: {{values.0.pubDate}}, {{values.0.pubTime}}</h3>
|
||||
</div>
|
||||
<br />
|
||||
<h4>Prior update was, {{values.1.status}} at {{values.1.published_at}}</h4>
|
||||
<div>
|
||||
<h4>Prior update was: {{values.1.status}} at {{values.1.pubDate}}, {{values.1.pubTime}}</h4>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user