소스 검색

Fixed another bug causing items to get orphaned sometimes (See #197)

v3_develop
jos 11 년 전
부모
커밋
f2970e33aa
5개의 변경된 파일4150개의 추가작업 그리고 4148개의 파일을 삭제
  1. +3
    -1
      HISTORY.md
  2. +4139
    -4139
      dist/vis.js
  3. +1
    -1
      dist/vis.map
  4. +6
    -6
      dist/vis.min.js
  5. +1
    -1
      lib/timeline/component/Group.js

+ 3
- 1
HISTORY.md 파일 보기

@ -3,7 +3,9 @@ http://visjs.org
## not yet released, version 3.1.1
(no changes yet)
### Timeline
- Fixed items in groups sometimes being displayed but not positioned correctly.
## 2014-07-22, version 3.1.0

+ 4139
- 4139
dist/vis.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 1
dist/vis.map
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 6
- 6
dist/vis.min.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 1
lib/timeline/component/Group.js 파일 보기

@ -258,7 +258,7 @@ Group.prototype.add = function(item) {
this.items[item.id] = item;
item.setParent(this);
if (item instanceof ItemRange && this.visibleItems.indexOf(item) == -1) {
if (this.visibleItems.indexOf(item) == -1) {
var range = this.itemSet.body.range; // TODO: not nice accessing the range like this
this._checkIfVisible(item, this.visibleItems, range);
}

불러오는 중...
취소
저장