Browse Source

update dist/timeline

codeClimate
Yotam Berkowitz 8 years ago
parent
commit
3cf665ee40
17 changed files with 1 additions and 7 deletions
  1. BIN
      dist/img/network/acceptDeleteIcon.png
  2. BIN
      dist/img/network/addNodeIcon.png
  3. BIN
      dist/img/network/backIcon.png
  4. BIN
      dist/img/network/connectIcon.png
  5. BIN
      dist/img/network/cross.png
  6. BIN
      dist/img/network/cross2.png
  7. BIN
      dist/img/network/deleteIcon.png
  8. BIN
      dist/img/network/downArrow.png
  9. BIN
      dist/img/network/editIcon.png
  10. BIN
      dist/img/network/leftArrow.png
  11. BIN
      dist/img/network/minus.png
  12. BIN
      dist/img/network/plus.png
  13. BIN
      dist/img/network/rightArrow.png
  14. BIN
      dist/img/network/upArrow.png
  15. BIN
      dist/img/network/zoomExtends.png
  16. BIN
      dist/img/timeline/delete.png
  17. +1
    -7
      dist/vis.js

BIN
dist/img/network/acceptDeleteIcon.png View File

Before After
Width: 24  |  Height: 24  |  Size: 20 KiB

BIN
dist/img/network/addNodeIcon.png View File

Before After
Width: 24  |  Height: 24  |  Size: 20 KiB

BIN
dist/img/network/backIcon.png View File

Before After
Width: 24  |  Height: 24  |  Size: 20 KiB

BIN
dist/img/network/connectIcon.png View File

Before After
Width: 24  |  Height: 24  |  Size: 20 KiB

BIN
dist/img/network/cross.png View File

Before After
Width: 7  |  Height: 7  |  Size: 18 KiB

BIN
dist/img/network/cross2.png View File

Before After
Width: 5  |  Height: 5  |  Size: 17 KiB

BIN
dist/img/network/deleteIcon.png View File

Before After
Width: 24  |  Height: 24  |  Size: 20 KiB

BIN
dist/img/network/downArrow.png View File

Before After
Width: 30  |  Height: 30  |  Size: 4.4 KiB

BIN
dist/img/network/editIcon.png View File

Before After
Width: 24  |  Height: 24  |  Size: 20 KiB

BIN
dist/img/network/leftArrow.png View File

Before After
Width: 30  |  Height: 30  |  Size: 4.4 KiB

BIN
dist/img/network/minus.png View File

Before After
Width: 30  |  Height: 30  |  Size: 4.0 KiB

BIN
dist/img/network/plus.png View File

Before After
Width: 30  |  Height: 30  |  Size: 4.2 KiB

BIN
dist/img/network/rightArrow.png View File

Before After
Width: 30  |  Height: 30  |  Size: 4.4 KiB

BIN
dist/img/network/upArrow.png View File

Before After
Width: 30  |  Height: 30  |  Size: 4.4 KiB

BIN
dist/img/network/zoomExtends.png View File

Before After
Width: 30  |  Height: 30  |  Size: 4.4 KiB

BIN
dist/img/timeline/delete.png View File

Before After
Width: 16  |  Height: 16  |  Size: 665 B

+ 1
- 7
dist/vis.js View File

@ -5,8 +5,7 @@
* A dynamic, browser-based visualization library.
*
* @version 4.15.2-SNAPSHOT
* @date 2016-03-14
* @date 2016-03-15
*
* @license
* Copyright (C) 2011-2016 Almende B.V, http://almende.com
@ -11058,8 +11057,6 @@ return /******/ (function(modules) { // webpackBootstrap
var start = getStart(item);
var end = getEnd(item);
console.log(start, end);
console.log(this.options);
if (this.options.rtl) {
var startSide = start - (item.getWidthRight() + 10) * factor;
@ -17670,7 +17667,6 @@ return /******/ (function(modules) { // webpackBootstrap
var interval = range.max - range.min;
var min = new Date(range.min.valueOf() - interval * 0.01);
var max = new Date(range.max.valueOf() + interval * 0.01);
console.log(min, max);
var animation = options && options.animation !== undefined ? options.animation : true;
this.range.setRange(min, max, animation);
};
@ -21751,7 +21747,6 @@ return /******/ (function(modules) { // webpackBootstrap
this.dirty = false;
}
console.log("redrawing range");
this._repaintDeleteButton(dom.box);
this._repaintDragLeft();
this._repaintDragRight();
@ -21931,7 +21926,6 @@ return /******/ (function(modules) { // webpackBootstrap
* @protected
*/
RangeItem.prototype._repaintDragRight = function () {
console.log("repainting!!!!");
if (this.selected && this.options.editable.updateTime && !this.dom.dragRight) {
// create and show drag area
var dragRight = document.createElement('div');

Loading…
Cancel
Save