Commit 0f823fdb6a6799775315aef4c86ec1ce73b336ec
1 parent
22d8d756
Exists in
master
and in
92 other branches
global start and stop
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
js/app/models/MyDataParamNode.js
... | ... | @@ -85,6 +85,8 @@ Ext.define('amdaModel.MyDataParamNode', { |
85 | 85 | var ch = new amdaModel.MyDataParamComponentNode({text: this.get('text') + '(' + i + ')' |
86 | 86 | }); |
87 | 87 | ch.set('nodeType', 'myDataParam'); |
88 | + ch.set('globalStart', this.get('globalStart')); | |
89 | + ch.set('globalStop', this.get('globalStop')); | |
88 | 90 | this.appendChild(ch); |
89 | 91 | } |
90 | 92 | |
... | ... |