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
Fixed `Timeline.clear()` not resetting a configured `options.start` and `options.end`
css_transitions
jos
10 years ago
parent
3f9e28efc1
commit
11ec14bace
4 changed files
with
14 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
HISTORY.md
+2
-0
dist/vis.js
+5
-5
dist/vis.min.js
+2
-0
src/timeline/Timeline.js
+ 5
- 0
HISTORY.md
View File
@ -4,6 +4,11 @@ http://visjs.org
## not yet released, version 1.0.3
### Timeline
- Fixed
`Timeline.clear()`
not resetting a configured
`options.start`
and
`options.end`
.
## 2014-05-28, version 1.0.2
+ 2
- 0
dist/vis.js
View File
@ -7238,6 +7238,8 @@ function Timeline (container, items, options) {
selectable
:
true
,
start
:
null
,
end
:
null
,
min
:
null
,
max
:
null
,
zoomMin
:
10
,
// milliseconds
+ 5
- 5
dist/vis.min.js
File diff suppressed because it is too large
View File
+ 2
- 0
src/timeline/Timeline.js
View File
@ -26,6 +26,8 @@ function Timeline (container, items, options) {
selectable
:
true
,
start
:
null
,
end
:
null
,
min
:
null
,
max
:
null
,
zoomMin
:
10
,
// milliseconds
Write
Preview
Loading…
Cancel
Save