diff options
author | Abyss777 <abyss@fox5.ru> | 2017-08-18 15:40:39 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-08-18 15:40:39 +0500 |
commit | f26159a40b3b23fbd63de312f121b1fe1bf64bd1 (patch) | |
tree | e11eb5ae16c18feaa24844aae8305de472e140b1 /web/app/view/edit/DevicesController.js | |
parent | d1d7d230a0262d9f6ae05f1c4c6718699edb8de3 (diff) | |
download | trackermap-web-f26159a40b3b23fbd63de312f121b1fe1bf64bd1.tar.gz trackermap-web-f26159a40b3b23fbd63de312f121b1fe1bf64bd1.tar.bz2 trackermap-web-f26159a40b3b23fbd63de312f121b1fe1bf64bd1.zip |
- Detach common known attributes
- Rename function
Diffstat (limited to 'web/app/view/edit/DevicesController.js')
-rw-r--r-- | web/app/view/edit/DevicesController.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/edit/DevicesController.js b/web/app/view/edit/DevicesController.js index 9616dbd2..df75b1d4 100644 --- a/web/app/view/edit/DevicesController.js +++ b/web/app/view/edit/DevicesController.js @@ -61,8 +61,8 @@ Ext.define('Traccar.view.edit.DevicesController', { deviceReadonly = Traccar.app.getPreference('deviceReadonly', false) && !Traccar.app.getUser().get('admin'); readonly = Traccar.app.getPreference('readonly', false) && !Traccar.app.getUser().get('admin'); this.lookupReference('toolbarAddButton').setDisabled(readonly || deviceReadonly); - this.lookupReference('toolbarDriversButton').setHidden(Traccar.app.isVehicleFeaturesDisabled() || - Traccar.app.getBooleanAttributePreference('ui.disableDrivers')); + this.lookupReference('toolbarDriversButton').setHidden( + Traccar.app.getVehicleFeaturesDisabled() || Traccar.app.getBooleanAttributePreference('ui.disableDrivers')); this.lookupReference('toolbarAttributesButton').setHidden( Traccar.app.getBooleanAttributePreference('ui.disableComputedAttributes')); |