From 3e19bbcd0d871db4c38d9f44c3ae29bafdff5a9d Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Tue, 27 Dec 2016 10:08:43 +0500 Subject: Reuse convertValue functions --- web/app/store/DistanceUnits.js | 4 ++-- web/app/store/SpeedUnits.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'web/app/store') diff --git a/web/app/store/DistanceUnits.js b/web/app/store/DistanceUnits.js index 57d15fc..0dcddbe 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 0480ad4..a14ab22 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'); } }); -- cgit v1.2.3