diff options
Diffstat (limited to 'web/app')
-rw-r--r-- | web/app/controller/Root.js | 2 | ||||
-rw-r--r-- | web/app/view/UserDevicesController.js | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index d6dd64830..b4ab06b82 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -79,7 +79,7 @@ Ext.define('Traccar.controller.Root', { loadApp: function () { Ext.getStore('Devices').load(); - Ext.getBody().empty(); + Ext.get('attribution').remove(); if (this.isPhone) { Ext.create('widget.mainMobile'); } else { diff --git a/web/app/view/UserDevicesController.js b/web/app/view/UserDevicesController.js index aefc9d83e..20fb47f85 100644 --- a/web/app/view/UserDevicesController.js +++ b/web/app/view/UserDevicesController.js @@ -19,7 +19,6 @@ Ext.define('Traccar.view.UserDevicesController', { alias: 'controller.userDevices', init: function () { - console.log(this.getView().user.getData().id); this.getView().getStore().load({ scope: this, callback: function (records, operation, success) { |