diff options
author | Abyss777 <abyss@fox5.ru> | 2017-03-28 15:55:33 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-03-28 16:08:48 +0500 |
commit | 69291297bab7e61af8596f6cca425fadbaf1304f (patch) | |
tree | 08db3c7567934c2f958413e3f077e4c1f15d31df /web/app/view/AttributeAliasesController.js | |
parent | 94973f80f543f82630351a7e5943dd4c9150a8b0 (diff) | |
download | trackermap-web-69291297bab7e61af8596f6cca425fadbaf1304f.tar.gz trackermap-web-69291297bab7e61af8596f6cca425fadbaf1304f.tar.bz2 trackermap-web-69291297bab7e61af8596f6cca425fadbaf1304f.zip |
Move BaseDialog, subclasses and their controllers to dialog subfolder
Diffstat (limited to 'web/app/view/AttributeAliasesController.js')
-rw-r--r-- | web/app/view/AttributeAliasesController.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/app/view/AttributeAliasesController.js b/web/app/view/AttributeAliasesController.js index f5348301..36684077 100644 --- a/web/app/view/AttributeAliasesController.js +++ b/web/app/view/AttributeAliasesController.js @@ -21,12 +21,12 @@ Ext.define('Traccar.view.AttributeAliasesController', { alias: 'controller.attributeAliases', requires: [ - 'Traccar.view.AttributeAliasDialog', + 'Traccar.view.dialog.AttributeAliasDialog', 'Traccar.model.AttributeAlias' ], objectModel: 'Traccar.model.AttributeAlias', - objectDialog: 'Traccar.view.AttributeAliasDialog', + objectDialog: 'Traccar.view.dialog.AttributeAliasDialog', removeTitle: Strings.sharedAttributeAlias, init: function () { @@ -48,7 +48,7 @@ Ext.define('Traccar.view.AttributeAliasesController', { attributeAlias.store = Ext.getStore('AttributeAliases'); deviceId = this.lookupReference('deviceField').getValue(); attributeAlias.set('deviceId', deviceId); - dialog = Ext.create('Traccar.view.AttributeAliasDialog'); + dialog = Ext.create('Traccar.view.dialog.AttributeAliasDialog'); dialog.down('form').loadRecord(attributeAlias); dialog.show(); }, |