aboutsummaryrefslogtreecommitdiff
path: root/web/app/Application.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/Application.js')
-rw-r--r--web/app/Application.js17
1 files changed, 13 insertions, 4 deletions
diff --git a/web/app/Application.js b/web/app/Application.js
index d73378c..0125cd0 100644
--- a/web/app/Application.js
+++ b/web/app/Application.js
@@ -164,15 +164,24 @@ Ext.define('Traccar.Application', {
}
},
- showError: function (error) {
+ showError: function (error, success) {
+ var title, general;
+ if (success) {
+ title = Strings.infoTitle;
+ general = Strings.infoGeneral;
+ } else {
+ title = Strings.errorTitle;
+ general = Strings.errorGeneral;
+ }
+
if (Ext.isString(error)) {
- Ext.Msg.alert(Strings.errorTitle, error);
+ Ext.Msg.alert(title, error);
} else if (error.responseText) {
- Ext.Msg.alert(Strings.errorTitle, Strings.errorGeneral +
+ Ext.Msg.alert(title, general +
'<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);
+ Ext.Msg.alert(title, error.statusText);
} else {
Ext.Msg.alert(Strings.errorTitle, Strings.errorConnection);
}