diff options
author | Abyss777 <abyss@fox5.ru> | 2017-05-04 09:20:02 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-05-04 09:20:02 +0500 |
commit | 26289d388106eed3b75cb1bfd84b0c23f0523a83 (patch) | |
tree | 33249e27b2b27c69af059e0e2354a1ebe9b99d81 /web/app/Application.js | |
parent | 454541646fa1675e9cf3695fceb5e72c5f5a4fe6 (diff) | |
download | trackermap-web-26289d388106eed3b75cb1bfd84b0c23f0523a83.tar.gz trackermap-web-26289d388106eed3b75cb1bfd84b0c23f0523a83.tar.bz2 trackermap-web-26289d388106eed3b75cb1bfd84b0c23f0523a83.zip |
Use user units in TotalDistance dialog
Diffstat (limited to 'web/app/Application.js')
-rw-r--r-- | web/app/Application.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/app/Application.js b/web/app/Application.js index d7a5bae8..b9d074e4 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 { |