Browse Source

Fixed #609: reduce the left/right dragarea when an item range is very small, so you can still move it as a whole

v3_develop
jos 9 years ago
parent
commit
c08a8a582f
7 changed files with 25234 additions and 25216 deletions
  1. +2
    -0
      HISTORY.md
  2. +2
    -0
      dist/vis.css
  3. +25211
    -25199
      dist/vis.js
  4. +1
    -1
      dist/vis.map
  5. +1
    -1
      dist/vis.min.css
  6. +15
    -15
      dist/vis.min.js
  7. +2
    -0
      lib/timeline/component/css/item.css

+ 2
- 0
HISTORY.md View File

@ -21,6 +21,8 @@ http://visjs.org
- Fixed not property initializing with a DataView for groups.
- Merged add custom timebar functionality, thanks @aytech!
- Fixed #664: end of item not restored when canceling a move event.
- Fixed #609: reduce the left/right dragarea when an item range is very small,
so you can still move it as a whole.
### DataSet/DataView

+ 2
- 0
dist/vis.css View File

@ -266,6 +266,7 @@
.vis.timeline .item.range .drag-left {
position: absolute;
width: 24px;
max-width: 20%;
height: 100%;
top: 0;
left: -4px;
@ -276,6 +277,7 @@
.vis.timeline .item.range .drag-right {
position: absolute;
width: 24px;
max-width: 20%;
height: 100%;
top: 0;
right: -4px;

+ 25211
- 25199
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


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


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


+ 2
- 0
lib/timeline/component/css/item.css View File

@ -99,6 +99,7 @@
.vis.timeline .item.range .drag-left {
position: absolute;
width: 24px;
max-width: 20%;
height: 100%;
top: 0;
left: -4px;
@ -109,6 +110,7 @@
.vis.timeline .item.range .drag-right {
position: absolute;
width: 24px;
max-width: 20%;
height: 100%;
top: 0;
right: -4px;

Loading…
Cancel
Save