diff options
author | Abyss777 <abyss@fox5.ru> | 2017-03-28 17:00:40 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-03-28 17:00:40 +0500 |
commit | 6f0bcddcac9a2ec711f545f1278a4ec991d05aa6 (patch) | |
tree | e224b0867554d64ba7c2a985c1ceaab529a075d1 /web/app/view/DevicesController.js | |
parent | 69291297bab7e61af8596f6cca425fadbaf1304f (diff) | |
download | trackermap-web-6f0bcddcac9a2ec711f545f1278a4ec991d05aa6.tar.gz trackermap-web-6f0bcddcac9a2ec711f545f1278a4ec991d05aa6.tar.bz2 trackermap-web-6f0bcddcac9a2ec711f545f1278a4ec991d05aa6.zip |
Remove Dialog from names
Diffstat (limited to 'web/app/view/DevicesController.js')
-rw-r--r-- | web/app/view/DevicesController.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/app/view/DevicesController.js b/web/app/view/DevicesController.js index 5442f545..9d426911 100644 --- a/web/app/view/DevicesController.js +++ b/web/app/view/DevicesController.js @@ -20,8 +20,8 @@ Ext.define('Traccar.view.DevicesController', { alias: 'controller.devices', requires: [ - 'Traccar.view.dialog.CommandDialog', - 'Traccar.view.dialog.DeviceDialog', + 'Traccar.view.dialog.Command', + 'Traccar.view.dialog.Device', 'Traccar.view.DeviceGeofences', 'Traccar.view.BaseWindow', 'Traccar.model.Device', @@ -48,7 +48,7 @@ Ext.define('Traccar.view.DevicesController', { }, objectModel: 'Traccar.model.Device', - objectDialog: 'Traccar.view.dialog.DeviceDialog', + objectDialog: 'Traccar.view.dialog.Device', removeTitle: Strings.sharedDevice, init: function () { @@ -83,7 +83,7 @@ Ext.define('Traccar.view.DevicesController', { command.set('deviceId', deviceId); command.set('textChannel', !online); - dialog = Ext.create('Traccar.view.dialog.CommandDialog'); + dialog = Ext.create('Traccar.view.dialog.Command'); typesStore = dialog.lookupReference('commandType').getStore(); typesStore.getProxy().setExtraParam('deviceId', deviceId); |