diff options
Diffstat (limited to 'web/app/ErrorManager.js')
-rw-r--r-- | web/app/ErrorManager.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/ErrorManager.js b/web/app/ErrorManager.js index 77e5ae373..e8b29a319 100644 --- a/web/app/ErrorManager.js +++ b/web/app/ErrorManager.js @@ -17,7 +17,7 @@ Ext.define('Traccar.ErrorManager', { singleton: true, - check: function(success, response) { + check: function (success, response) { if (success) { var result = Ext.decode(response.responseText); if (result.success || result.error === undefined) { @@ -36,7 +36,7 @@ Ext.define('Traccar.ErrorManager', { } }, - error: function(message) { + error: function (message) { Ext.Msg.alert(strings.errorTitle, message); } |