Browse Source

Fixed wrongly merged TimeAxis.js

v3_develop
jos 9 years ago
parent
commit
d82645e65f
6 changed files with 26409 additions and 26321 deletions
  1. +1
    -2
      dist/vis.css
  2. +26392
    -26301
      dist/vis.js
  3. +1
    -1
      dist/vis.map
  4. +1
    -1
      dist/vis.min.css
  5. +12
    -12
      dist/vis.min.js
  6. +2
    -4
      lib/timeline/component/TimeAxis.js

+ 1
- 2
dist/vis.css View File

@ -320,8 +320,7 @@
.vis.timeline .timeaxis .grid.vertical {
position: absolute;
width: 0;
border-right: 1px solid;
border-left: 1px solid;
}
.vis.timeline .timeaxis .grid.minor {

+ 26392
- 26301
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


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


+ 2
- 4
lib/timeline/component/TimeAxis.js View File

@ -239,11 +239,9 @@ TimeAxis.prototype._repaintLabels = function () {
}
this._repaintMajorText(x, step.getLabelMajor(), orientation, className);
}
if (this.options.showMajorLines == true) {
prevLine = this._repaintMajorLine(x, orientation, className);
}
prevLine = this._repaintMajorLine(x, orientation, className);
}
else if (this.options.showMinorLines == true) {
else {
prevLine = this._repaintMinorLine(x, orientation, className);
}

Loading…
Cancel
Save