Browse Source

Fixed #654: removed unnecessary minimum height for groups, takes the height of the group label as minimum height now.

v3_develop
jos 9 years ago
parent
commit
1c536c356a
5 changed files with 4680 additions and 4678 deletions
  1. +2
    -0
      HISTORY.md
  2. +4669
    -4669
      dist/vis.js
  3. +1
    -1
      dist/vis.map
  4. +7
    -7
      dist/vis.min.js
  5. +1
    -1
      lib/timeline/component/Group.js

+ 2
- 0
HISTORY.md View File

@ -11,6 +11,8 @@ http://visjs.org
### Timeline
- Orientation can now be configured separately for axis and items.
- Fixed #654: removed unnecessary minimum height for groups, takes the
height of the group label as minimum height now.
## 2015-03-05, version 3.11.0

+ 4669
- 4669
dist/vis.js
File diff suppressed because it is too large
View File


+ 1
- 1
dist/vis.map
File diff suppressed because it is too large
View File


+ 7
- 7
dist/vis.min.js
File diff suppressed because it is too large
View File


+ 1
- 1
lib/timeline/component/Group.js View File

@ -269,7 +269,7 @@ Group.prototype._calculateHeight = function (margin) {
height = max + margin.item.vertical / 2;
}
else {
height = margin.axis + margin.item.vertical;
height = 0;
}
height = Math.max(height, this.props.label.height);

Loading…
Cancel
Save