From b21ce46166d401ae1312a31dd6a100e8c8b3c2b2 Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Wed, 16 Sep 2015 11:50:00 +0200 Subject: [PATCH] display (lat,lon) in table if no address available --- docroot/table/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docroot/table/index.html b/docroot/table/index.html index d07c2f1..6d451c6 100644 --- a/docroot/table/index.html +++ b/docroot/table/index.html @@ -62,7 +62,7 @@ var dt = moment.utc(d.tst * 1000).local(); d['fulldate'] = dt.format("DD MMM YYYY HH:mm:ss"); - d['addr'] = d['addr'] || '(unknown)'; + d['addr'] = d['addr'] || '(' + d['lat'] + ',' + d['lon'] + ')'; d['cc'] = d['cc'] || '__'; d['tid'] = d['tid'] || '__';