Browse Source

fixed dot radius bug per #208

v3_develop
Alex de Mulder 10 years ago
parent
commit
e3068abf78
2 changed files with 14248 additions and 14248 deletions
  1. +14247
    -14247
      dist/vis.js
  2. +1
    -1
      lib/network/Node.js

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


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

@ -179,7 +179,7 @@ Node.prototype.setProperties = function(properties, constants) {
// individual shape properties
if (properties.shape !== undefined) {this.shape = properties.shape;}
if (properties.image !== undefined) {this.image = properties.image;}
if (properties.radius !== undefined) {this.radius = properties.radius;}
if (properties.radius !== undefined) {this.radius = properties.radius; this.baseRadiusValue = this.radius;}
if (properties.color !== undefined) {this.color = util.parseColor(properties.color);}
if (properties.fontColor !== undefined) {this.fontColor = properties.fontColor;}

Loading…
Cancel
Save