Commit b32972728d414e9619d81a713050557a4c5a7e03

Authored by Elena.Budnik
1 parent 57bf8841

bug when calculate GlobalStart, GlobalStop for mydataParam

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
js/app/models/InteractiveNode.js
... ... @@ -286,8 +286,8 @@ Ext.define('amdaModel.InteractiveNode', {
286 286 if (this.get('nodeType') == 'myDataParam')
287 287 {
288 288 var startStop = res.info.split("<br/>");
289   - var globalStart = startStop[1].substr(0,16);
290   - var globalStop = startStop[1].substr(17,16);
  289 + var globalStart = startStop[1].substr(0,19);
  290 + var globalStop = startStop[1].substr(20);
291 291  
292 292 this.set('globalStart', globalStart);
293 293 this.set('globalStop', globalStop);
... ...