Browse Source

returning meaningful values in getDataRange

+ instead of returning 'null', returning the
  calculated values
flowchartTest
Manuel Schallar 9 years ago
parent
commit
d1e01bccf0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lib/timeline/Core.js

+ 2
- 2
lib/timeline/Core.js View File

@ -496,8 +496,8 @@ Core.prototype.getDataRange = function() {
}
return {
start: null,
end: null
start: start,
end: end
}
};

Loading…
Cancel
Save