aboutsummaryrefslogtreecommitdiff
path: root/web/app/store
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-12-27 10:08:43 +0500
committerAbyss777 <abyss@fox5.ru>2016-12-27 10:08:43 +0500
commit3e19bbcd0d871db4c38d9f44c3ae29bafdff5a9d (patch)
treec837e579141fb656ff5f4e17fe7b2ff20d84ad41 /web/app/store
parent187e8dc8ce48aa2c4d70fe7bddbc234cbab94950 (diff)
downloadetbsa-traccar-web-3e19bbcd0d871db4c38d9f44c3ae29bafdff5a9d.tar.gz
etbsa-traccar-web-3e19bbcd0d871db4c38d9f44c3ae29bafdff5a9d.tar.bz2
etbsa-traccar-web-3e19bbcd0d871db4c38d9f44c3ae29bafdff5a9d.zip
Reuse convertValue functions
Diffstat (limited to 'web/app/store')
-rw-r--r--web/app/store/DistanceUnits.js4
-rw-r--r--web/app/store/SpeedUnits.js2
2 files changed, 3 insertions, 3 deletions
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');
}
});