diff options
author | Abyss777 <abyss@fox5.ru> | 2017-11-01 08:40:58 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-11-01 08:40:58 +0500 |
commit | 48631f90b2e4718bf7c2ab8312424647b63f4925 (patch) | |
tree | d9c80566060b7f61cd6acc683dac8efd7f3109e8 /web/app/view/MainController.js | |
parent | 2fd7c0f03ec9a4a3734a0aba38d56f59fddc6e48 (diff) | |
download | trackermap-web-48631f90b2e4718bf7c2ab8312424647b63f4925.tar.gz trackermap-web-48631f90b2e4718bf7c2ab8312424647b63f4925.tar.bz2 trackermap-web-48631f90b2e4718bf7c2ab8312424647b63f4925.zip |
Add attribute to hide Events panel
Diffstat (limited to 'web/app/view/MainController.js')
-rw-r--r-- | web/app/view/MainController.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/app/view/MainController.js b/web/app/view/MainController.js index 126d9af5..7cd03050 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')); } }); |