diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-05-04 19:03:30 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-04 19:03:30 +1200 |
commit | e200c1b9fe2f840d0d28836e19abaebb7c33210e (patch) | |
tree | 33249e27b2b27c69af059e0e2354a1ebe9b99d81 /web/app/Application.js | |
parent | 454541646fa1675e9cf3695fceb5e72c5f5a4fe6 (diff) | |
parent | 26289d388106eed3b75cb1bfd84b0c23f0523a83 (diff) | |
download | trackermap-web-e200c1b9fe2f840d0d28836e19abaebb7c33210e.tar.gz trackermap-web-e200c1b9fe2f840d0d28836e19abaebb7c33210e.tar.bz2 trackermap-web-e200c1b9fe2f840d0d28836e19abaebb7c33210e.zip |
Merge pull request #480 from Abyss777/convert_total_distance
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 { |