diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-06-01 16:50:47 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-01 16:50:47 +1200 |
commit | fe99c894c581722ab6aa2b422ed768eb9da19cfb (patch) | |
tree | 21f5e7cc17e982e2c5b52682dfac29943e39199d /web/app/view/edit | |
parent | 0e598a6232e9cd7188916e06077862d6630a255b (diff) | |
parent | 35e8f4b4974515733737c5cc1dd439ca47860007 (diff) | |
download | trackermap-web-fe99c894c581722ab6aa2b422ed768eb9da19cfb.tar.gz trackermap-web-fe99c894c581722ab6aa2b422ed768eb9da19cfb.tar.bz2 trackermap-web-fe99c894c581722ab6aa2b422ed768eb9da19cfb.zip |
Merge pull request #498 from Abyss777/events_panel
Implement Events panel
Diffstat (limited to 'web/app/view/edit')
-rw-r--r-- | web/app/view/edit/Devices.js | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/web/app/view/edit/Devices.js b/web/app/view/edit/Devices.js index fe3de42c..196df733 100644 --- a/web/app/view/edit/Devices.js +++ b/web/app/view/edit/Devices.js @@ -166,25 +166,7 @@ Ext.define('Traccar.view.edit.Devices', { }, { text: Strings.deviceLastUpdate, dataIndex: 'lastUpdate', - renderer: function (value, metaData, record) { - var seconds, interval; - - if (value) { - seconds = Math.floor((new Date() - value) / 1000); - if (seconds < 0) { - seconds = 0; - } - interval = Math.floor(seconds / 86400); - if (interval > 1) { - return interval + ' ' + Strings.sharedDays; - } - interval = Math.floor(seconds / 3600); - if (interval > 1) { - return interval + ' ' + Strings.sharedHours; - } - return Math.floor(seconds / 60) + ' ' + Strings.sharedMinutes; - } - } + renderer: Traccar.AttributeFormatter.getFormatter('lastUpdate') }] } }); |