Browse Source

- Fixed #1404, made the array returned by findNode match the docs.

codeClimate
Alex de Mulder 8 years ago
parent
commit
573d355827
3 changed files with 5 additions and 0 deletions
  1. +1
    -0
      HISTORY.md
  2. +2
    -0
      dist/vis.js
  3. +2
    -0
      lib/network/modules/Clustering.js

+ 1
- 0
HISTORY.md View File

@ -15,6 +15,7 @@ http://visjs.org
- Fixed findNode method. It now does not return internal objects anymore.
- Fixed #1529, clustering and declustering now respects the original settings of the edges for physics and hidden.
- Fixed #1406, control nodes are now drawn immediately without a second redraw.
- Fixed #1404, made the array returned by findNode match the docs.
## 2015-12-18, version 4.11.0

+ 2
- 0
dist/vis.js View File

@ -36500,6 +36500,8 @@ return /******/ (function(modules) { // webpackBootstrap
counter++;
}
stack.push(nodeId);
stack.reverse();
return stack;
}

+ 2
- 0
lib/network/modules/Clustering.js View File

@ -691,6 +691,8 @@ class ClusterEngine {
counter++;
}
stack.push(nodeId);
stack.reverse();
return stack;
}

Loading…
Cancel
Save