Commit 8f00a4d972599eaf5d87e2a30dc3b3275c4b0cfe

Authored by Elena.Budnik
1 parent 3d7c42ed

correct GlobalStart GlobalStop

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
js/app/models/MyDataNode.js
... ... @@ -188,9 +188,9 @@ Ext.define('amdaModel.MyDataNode', {
188 188 if (myParamRootNode.isExpanded) {
189 189 Ext.Array.each(myParamRootNode.childNodes, function(node) {
190 190 if (node.get('linkedMask') && node.get('linkedMask') == mask) {
191   - var globalStart = maskDesc.substr(0,16);
192   - var globalStop = maskDesc.substr(17,16);
193   -
  191 + var globalStart = maskDesc.substr(0,19);
  192 + var globalStop = maskDesc.substr(20);
  193 +
194 194 node.set('globalStart', globalStart);
195 195 node.set('globalStop', globalStop);
196 196 if (node.get('info')) {
... ...