Browse Source

fixed edge edit nodes

v3_develop
Alex de Mulder 10 years ago
parent
commit
72105bf73b
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      dist/vis-light.js
  2. +1
    -1
      dist/vis.js
  3. +1
    -1
      lib/network/Node.js

+ 1
- 1
dist/vis-light.js View File

@ -19227,7 +19227,7 @@ return /******/ (function(modules) { // webpackBootstrap
}
// copy group properties
if (this.group !== undefined) {
if (this.group !== undefined && this.group != "") {
var groupObj = this.grouplist.get(this.group);
for (var prop in groupObj) {
if (groupObj.hasOwnProperty(prop)) {

+ 1
- 1
dist/vis.js View File

@ -18489,7 +18489,7 @@ return /******/ (function(modules) { // webpackBootstrap
}
// copy group properties
if (this.group !== undefined) {
if (this.group !== undefined && this.group != "") {
var groupObj = this.grouplist.get(this.group);
for (var prop in groupObj) {
if (groupObj.hasOwnProperty(prop)) {

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

@ -171,7 +171,7 @@ Node.prototype.setProperties = function(properties, constants) {
}
// copy group properties
if (this.group !== undefined) {
if (this.group !== undefined && this.group != "") {
var groupObj = this.grouplist.get(this.group);
for (var prop in groupObj) {
if (groupObj.hasOwnProperty(prop)) {

Loading…
Cancel
Save