aboutsummaryrefslogtreecommitdiff
path: root/web/app/view
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/view')
-rw-r--r--web/app/view/Main.js1
-rw-r--r--web/app/view/MainController.js1
-rw-r--r--web/app/view/map/MapController.js3
3 files changed, 4 insertions, 1 deletions
diff --git a/web/app/view/Main.js b/web/app/view/Main.js
index 2d251a5..0504245 100644
--- a/web/app/view/Main.js
+++ b/web/app/view/Main.js
@@ -75,6 +75,7 @@ Ext.define('Traccar.view.Main', {
}, {
region: 'east',
xtype: 'eventsView',
+ reference: 'eventsView',
width: Traccar.Style.deviceWidth,
collapsed: true,
titleCollapse: true,
diff --git a/web/app/view/MainController.js b/web/app/view/MainController.js
index 126d9af..7cd0305 100644
--- a/web/app/view/MainController.js
+++ b/web/app/view/MainController.js
@@ -21,5 +21,6 @@ Ext.define('Traccar.view.MainController', {
init: function () {
this.lookupReference('reportView').setHidden(Traccar.app.getBooleanAttributePreference('ui.disableReport'));
+ this.lookupReference('eventsView').setHidden(Traccar.app.getBooleanAttributePreference('ui.disableEvents'));
}
});
diff --git a/web/app/view/map/MapController.js b/web/app/view/map/MapController.js
index 75796f9..38b2340 100644
--- a/web/app/view/map/MapController.js
+++ b/web/app/view/map/MapController.js
@@ -46,7 +46,8 @@ Ext.define('Traccar.view.map.MapController', {
this.callParent();
this.lookupReference('showReportsButton').setVisible(
Traccar.app.isMobile() && !Traccar.app.getBooleanAttributePreference('ui.disableReport'));
- this.lookupReference('showEventsButton').setVisible(Traccar.app.isMobile());
+ this.lookupReference('showEventsButton').setVisible(
+ Traccar.app.isMobile() && !Traccar.app.getBooleanAttributePreference('ui.disableEvents'));
},
showReports: function () {