diff options
author | Abyss777 <abyss@fox5.ru> | 2016-12-27 10:08:43 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-12-27 10:08:43 +0500 |
commit | 3e19bbcd0d871db4c38d9f44c3ae29bafdff5a9d (patch) | |
tree | c837e579141fb656ff5f4e17fe7b2ff20d84ad41 /web/app/store | |
parent | 187e8dc8ce48aa2c4d70fe7bddbc234cbab94950 (diff) | |
download | trackermap-web-3e19bbcd0d871db4c38d9f44c3ae29bafdff5a9d.tar.gz trackermap-web-3e19bbcd0d871db4c38d9f44c3ae29bafdff5a9d.tar.bz2 trackermap-web-3e19bbcd0d871db4c38d9f44c3ae29bafdff5a9d.zip |
Reuse convertValue functions
Diffstat (limited to 'web/app/store')
-rw-r--r-- | web/app/store/DistanceUnits.js | 4 | ||||
-rw-r--r-- | web/app/store/SpeedUnits.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/web/app/store/DistanceUnits.js b/web/app/store/DistanceUnits.js index 57d15fc8..0dcddbea 100644 --- a/web/app/store/DistanceUnits.js +++ b/web/app/store/DistanceUnits.js @@ -1,5 +1,5 @@ /* - * Copyright 2015 Anton Tananaev (anton@traccar.org) + * Copyright 2015 - 2016 Anton Tananaev (anton@traccar.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -48,6 +48,6 @@ Ext.define('Traccar.store.DistanceUnits', { unit = 'km'; } model = this.findRecord('key', unit); - return (value * model.get('factor')).toFixed(2) + ' ' + model.get('name'); + return this.convertValue(value, unit).toFixed(2) + ' ' + model.get('name'); } }); diff --git a/web/app/store/SpeedUnits.js b/web/app/store/SpeedUnits.js index 0480ad42..a14ab22d 100644 --- a/web/app/store/SpeedUnits.js +++ b/web/app/store/SpeedUnits.js @@ -48,6 +48,6 @@ Ext.define('Traccar.store.SpeedUnits', { unit = 'kn'; } model = this.findRecord('key', unit); - return (value * model.get('factor')).toFixed(1) + ' ' + model.get('name'); + return this.convertValue(value, unit).toFixed(1) + ' ' + model.get('name'); } }); |