Browse Source

- Improved handling of empty image field.

flowchartTest
Alex de Mulder 9 years ago
parent
commit
af39649458
3 changed files with 2858 additions and 2857 deletions
  1. +1
    -0
      HISTORY.md
  2. +2856
    -2856
      dist/vis.js
  3. +1
    -1
      lib/network/modules/components/Node.js

+ 1
- 0
HISTORY.md View File

@ -18,6 +18,7 @@ http://visjs.org
- Added zoom events from keyboard and navigation buttons.
- No longer start stabilization with an empty node set.
- Fixed #974 connecting static smooth and straight edges.
- Improved handling of empty image field.
## 2015-06-16, version 4.3.0

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


+ 1
- 1
lib/network/modules/components/Node.js View File

@ -138,7 +138,7 @@ class Node {
Node.parseOptions(this.options, options, true);
// load the images
if (this.options.image !== undefined && this.options.image != "") {
if (this.options.image !== undefined) {
if (this.imagelist) {
this.imageObj = this.imagelist.load(this.options.image, this.options.brokenImage, this.id);
}

Loading…
Cancel
Save