aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/map
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-08-01 11:57:54 +0500
committerAbyss777 <abyss@fox5.ru>2017-08-01 11:57:54 +0500
commit9f7b998c50b304205858973fe542b49b0e705be5 (patch)
tree8ef8f08fb184ebb52bc1c42e2d5dc5f7dd624de0 /web/app/view/map
parent3f4190a60c119f55822b218cc54fff22ff3c2ac5 (diff)
downloadetbsa-traccar-web-9f7b998c50b304205858973fe542b49b0e705be5.tar.gz
etbsa-traccar-web-9f7b998c50b304205858973fe542b49b0e705be5.tar.bz2
etbsa-traccar-web-9f7b998c50b304205858973fe542b49b0e705be5.zip
Implemented attribute to disable reports
Diffstat (limited to 'web/app/view/map')
-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 02d4e38..39cf510 100644
--- a/web/app/view/map/MapController.js
+++ b/web/app/view/map/MapController.js
@@ -44,7 +44,8 @@ Ext.define('Traccar.view.map.MapController', {
init: function () {
this.callParent();
- this.lookupReference('showReportsButton').setVisible(Traccar.app.isMobile());
+ this.lookupReference('showReportsButton').setVisible(Traccar.app.isMobile() &&
+ !Traccar.app.getAttributePreference('web.disableReport', false));
this.lookupReference('showEventsButton').setVisible(Traccar.app.isMobile());
},