Convert UTC dates/times to local times.

This commit is contained in:
jkaplon 2015-08-25 17:32:05 -04:00
parent f43d6a9d19
commit ccfdce32b0
2 changed files with 8 additions and 2 deletions

View File

@ -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'; }

View File

@ -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>