Commit 81fae858e2ae18f5ff5195bbaa19b6fd3343dee0

Authored by Benjamin Renard
1 parent 80af19f0

Remove a cyclical dependence during ExecutableNode loading

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
js/app/models/ExecutableNode.js
... ... @@ -26,7 +26,7 @@ Ext.define('amdaModel.ExecutableNode', {
26 26 constructor : function(config) {
27 27 this.callParent(arguments);
28 28 this.set('ownerTreeId',amdaUI.ExplorerUI.OPE_TAB.TREE_ID);
29   - this.set('jobNode', amdaModel.BkgJobNode.$className);
  29 + this.set('jobNode', 'amdaModel.BkgJobNode');
30 30 },
31 31  
32 32 loadJobTree : function() {
... ...