aboutsummaryrefslogtreecommitdiff
path: root/web/app/store/DistanceUnits.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-06-06 13:52:35 +0500
committerAbyss777 <abyss@fox5.ru>2017-06-06 13:55:15 +0500
commit4f61e2a9fd0f9632e05d5bac0648c2548b9cef39 (patch)
tree40c27e191c4f921666777fae79349b4fb792db0c /web/app/store/DistanceUnits.js
parentf538963be5fcee2280b22050c8a51475c3a984f8 (diff)
downloadetbsa-traccar-web-4f61e2a9fd0f9632e05d5bac0648c2548b9cef39.tar.gz
etbsa-traccar-web-4f61e2a9fd0f9632e05d5bac0648c2548b9cef39.tar.bz2
etbsa-traccar-web-4f61e2a9fd0f9632e05d5bac0648c2548b9cef39.zip
Optimize formatValue functions
Diffstat (limited to 'web/app/store/DistanceUnits.js')
-rw-r--r--web/app/store/DistanceUnits.js13
1 files changed, 2 insertions, 11 deletions
diff --git a/web/app/store/DistanceUnits.js b/web/app/store/DistanceUnits.js
index 189f79b..e64ce23 100644
--- a/web/app/store/DistanceUnits.js
+++ b/web/app/store/DistanceUnits.js
@@ -42,21 +42,12 @@ Ext.define('Traccar.store.DistanceUnits', {
return back ? value / model.get('factor') : value * model.get('factor');
},
- formatValue: function (value, unit) {
+ formatValue: function (value, unit, convert) {
var model;
if (!unit) {
unit = 'km';
}
model = this.findRecord('key', unit);
- return value.toFixed(2) + ' ' + model.get('name');
- },
-
- convertAndFormat: function (value, unit) {
- var model;
- if (!unit) {
- unit = 'km';
- }
- model = this.findRecord('key', unit);
- return this.convertValue(value, unit).toFixed(2) + ' ' + model.get('name');
+ return (convert ? this.convertValue(value, unit) : value).toFixed(2) + ' ' + model.get('name');
}
});