aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/map/MapController.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-11-01 16:56:44 +1300
committerGitHub <noreply@github.com>2017-11-01 16:56:44 +1300
commitb36bb685ff31b06c7f50e660aebd3a69db5de5d7 (patch)
treed9c80566060b7f61cd6acc683dac8efd7f3109e8 /web/app/view/map/MapController.js
parent2fd7c0f03ec9a4a3734a0aba38d56f59fddc6e48 (diff)
parent48631f90b2e4718bf7c2ab8312424647b63f4925 (diff)
downloadetbsa-traccar-web-b36bb685ff31b06c7f50e660aebd3a69db5de5d7.tar.gz
etbsa-traccar-web-b36bb685ff31b06c7f50e660aebd3a69db5de5d7.tar.bz2
etbsa-traccar-web-b36bb685ff31b06c7f50e660aebd3a69db5de5d7.zip
Merge pull request #615 from Abyss777/disable_events
Add attribute to hide Events panel
Diffstat (limited to 'web/app/view/map/MapController.js')
-rw-r--r--web/app/view/map/MapController.js3
1 files changed, 2 insertions, 1 deletions
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 () {