aboutsummaryrefslogtreecommitdiff
path: root/web/app/Application.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-05-04 09:20:02 +0500
committerAbyss777 <abyss@fox5.ru>2017-05-04 09:20:02 +0500
commit26289d388106eed3b75cb1bfd84b0c23f0523a83 (patch)
tree33249e27b2b27c69af059e0e2354a1ebe9b99d81 /web/app/Application.js
parent454541646fa1675e9cf3695fceb5e72c5f5a4fe6 (diff)
downloadetbsa-traccar-web-26289d388106eed3b75cb1bfd84b0c23f0523a83.tar.gz
etbsa-traccar-web-26289d388106eed3b75cb1bfd84b0c23f0523a83.tar.bz2
etbsa-traccar-web-26289d388106eed3b75cb1bfd84b0c23f0523a83.zip
Use user units in TotalDistance dialog
Diffstat (limited to 'web/app/Application.js')
-rw-r--r--web/app/Application.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/app/Application.js b/web/app/Application.js
index d7a5bae..b9d074e 100644
--- a/web/app/Application.js
+++ b/web/app/Application.js
@@ -164,9 +164,9 @@ Ext.define('Traccar.Application', {
if (Ext.isString(error)) {
Ext.Msg.alert(Strings.errorTitle, error);
} else if (error.responseText) {
- Ext.Msg.alert(Strings.errorTitle, Strings.errorGeneral
- + '<br><br><textarea readonly rows="5" style="resize: none; width: 100%;">'
- + error.responseText + '</textarea>');
+ Ext.Msg.alert(Strings.errorTitle, Strings.errorGeneral +
+ '<br><br><textarea readonly rows="5" style="resize: none; width: 100%;">' +
+ error.responseText + '</textarea>');
} else if (error.statusText) {
Ext.Msg.alert(Strings.errorTitle, error.statusText);
} else {