Browse Source

Fixed `Timeline.clear()` not resetting a configured `options.start` and `options.end`

css_transitions
jos 10 years ago
parent
commit
11ec14bace
4 changed files with 14 additions and 5 deletions
  1. +5
    -0
      HISTORY.md
  2. +2
    -0
      dist/vis.js
  3. +5
    -5
      dist/vis.min.js
  4. +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

Loading…
Cancel
Save