This website works better with JavaScript.
Home
Explore
Help
Sign In
jrtechs
/
jrtechs-vis
mirror of
https://github.com/jrtechs/vis.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
82
Wiki
Activity
Browse Source
returning meaningful values in getDataRange
+ instead of returning 'null', returning the calculated values
flowchartTest
Manuel Schallar
9 years ago
parent
38cdcf23bb
commit
d1e01bccf0
1 changed files
with
2 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
lib/timeline/Core.js
+ 2
- 2
lib/timeline/Core.js
View File
@ -496,8 +496,8 @@ Core.prototype.getDataRange = function() {
}
}
return
{
return
{
start
:
null
,
end
:
null
start
:
start
,
end
:
end
}
}
}
;
}
;
Write
Preview
Loading…
Cancel
Save