diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-26 01:09:49 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-26 01:09:49 +1200 |
commit | 4064f864e20d3d40025a94e10cf56084d2c78287 (patch) | |
tree | 0a9e69d6139e19a830a979a45b76f82ccbe27bb4 /web/app/view/DeviceDialog.js | |
parent | 7e20896334f4f6927cf14c5272cf7d893efc3a05 (diff) | |
parent | fb0a1689fda9a06ecf5e6a9a97ba8b2b704cacb9 (diff) | |
download | trackermap-server-4064f864e20d3d40025a94e10cf56084d2c78287.tar.gz trackermap-server-4064f864e20d3d40025a94e10cf56084d2c78287.tar.bz2 trackermap-server-4064f864e20d3d40025a94e10cf56084d2c78287.zip |
Merge pull request #2155 from Abyss777/attributes
Added group and server attributes
Diffstat (limited to 'web/app/view/DeviceDialog.js')
-rw-r--r-- | web/app/view/DeviceDialog.js | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/web/app/view/DeviceDialog.js b/web/app/view/DeviceDialog.js index 2938d5dc3..e88618fc5 100644 --- a/web/app/view/DeviceDialog.js +++ b/web/app/view/DeviceDialog.js @@ -18,10 +18,10 @@ Ext.define('Traccar.view.DeviceDialog', { extend: 'Traccar.view.BaseEditDialog', requires: [ - 'Traccar.view.DeviceDialogController' + 'Traccar.view.BaseEditDialog' ], - controller: 'deviceDialog', + controller: 'baseEditDialog', title: Strings.deviceDialog, items: { @@ -45,18 +45,5 @@ Ext.define('Traccar.view.DeviceDialog', { displayField: 'name', valueField: 'id' }] - }, - - buttons: [{ - text : Strings.sharedAttributes, - handler: 'showAttributesView' - }, { - xtype: 'tbfill' - }, { - text: Strings.sharedSave, - handler: 'onSaveClick' - }, { - text: Strings.sharedCancel, - handler: 'closeView' - }] + } }); |