diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-08-18 23:10:25 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-18 23:10:25 +1200 |
commit | f7edbe59ae418d12871b483a8533af3ac28fbff6 (patch) | |
tree | 287a5ade49ee4f51328aa93216545d41117f2d95 /web/app/controller/Root.js | |
parent | cbc90c04da15fe0d57910e6180205351a894166b (diff) | |
parent | f26159a40b3b23fbd63de312f121b1fe1bf64bd1 (diff) | |
download | trackermap-web-f7edbe59ae418d12871b483a8533af3ac28fbff6.tar.gz trackermap-web-f7edbe59ae418d12871b483a8533af3ac28fbff6.tar.bz2 trackermap-web-f7edbe59ae418d12871b483a8533af3ac28fbff6.zip |
Merge pull request #556 from Abyss777/disable_vehicle_features
Disable some UI features
Diffstat (limited to 'web/app/controller/Root.js')
-rw-r--r-- | web/app/controller/Root.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index 92620115..1c70dd03 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -113,6 +113,13 @@ Ext.define('Traccar.controller.Root', { Ext.getStore('AttributeAliases').load(); Ext.getStore('ComputedAttributes').load(); this.initReportEventTypesStore(); + + Ext.getStore('ServerAttributes').loadData(Ext.getStore('CommonDeviceAttributes').getData().items, true); + Ext.getStore('ServerAttributes').loadData(Ext.getStore('CommonUserAttributes').getData().items, true); + Ext.getStore('UserAttributes').loadData(Ext.getStore('CommonUserAttributes').getData().items, true); + Ext.getStore('DeviceAttributes').loadData(Ext.getStore('CommonDeviceAttributes').getData().items, true); + Ext.getStore('GroupAttributes').loadData(Ext.getStore('CommonDeviceAttributes').getData().items, true); + Ext.getStore('Devices').load({ scope: this, callback: function () { |