Browse Source

- Fixed scaling not doing anything to edges.

webworkersNetwork
Alex de Mulder 9 years ago
parent
commit
ab88ca5299
3 changed files with 6 additions and 4 deletions
  1. +1
    -0
      HISTORY.md
  2. +4
    -4
      dist/vis.js
  3. +1
    -0
      lib/network/modules/components/Edge.js

+ 1
- 0
HISTORY.md View File

@ -6,6 +6,7 @@ http://visjs.org
### Network ### Network
- Fixed Phantom Edges during clustering. - Fixed Phantom Edges during clustering.
- Fixed scaling not doing anything to edges.
## 2015-09-07, version 4.8.1 ## 2015-09-07, version 4.8.1

+ 4
- 4
dist/vis.js View File

@ -5,7 +5,7 @@
* A dynamic, browser-based visualization library. * A dynamic, browser-based visualization library.
* *
* @version 4.8.2-SNAPSHOT * @version 4.8.2-SNAPSHOT
* @date 2015-09-08
* @date 2015-09-11
* *
* @license * @license
* Copyright (C) 2011-2015 Almende B.V, http://almende.com * Copyright (C) 2011-2015 Almende B.V, http://almende.com
@ -23236,7 +23236,7 @@ return /******/ (function(modules) { // webpackBootstrap
global: { global: {
align: ['center', 'left', 'right'], align: ['center', 'left', 'right'],
autoResize: true, autoResize: true,
throttleRedraw: 0,
throttleRedraw: [10, 0, 1000, 10],
clickToUse: false, clickToUse: false,
// dataAttributes: ['all'], // FIXME: can be 'all' or string[] // dataAttributes: ['all'], // FIXME: can be 'all' or string[]
editable: { editable: {
@ -26747,7 +26747,7 @@ return /******/ (function(modules) { // webpackBootstrap
}, },
autoResize: true, autoResize: true,
throttleRedraw: 0,
throttleRedraw: [10, 0, 1000, 10],
clickToUse: false, clickToUse: false,
end: '', end: '',
format: { format: {
@ -31369,7 +31369,7 @@ return /******/ (function(modules) { // webpackBootstrap
value: function parseOptions(parentOptions, newOptions) { value: function parseOptions(parentOptions, newOptions) {
var allowDeletion = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; var allowDeletion = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2];
var fields = ['id', 'from', 'hidden', 'hoverWidth', 'label', 'labelHighlightBold', 'length', 'line', 'opacity', 'physics', 'selectionWidth', 'selfReferenceSize', 'to', 'title', 'value', 'width'];
var fields = ['id', 'from', 'hidden', 'hoverWidth', 'label', 'labelHighlightBold', 'length', 'line', 'opacity', 'physics', 'scaling', 'selectionWidth', 'selfReferenceSize', 'to', 'title', 'value', 'width'];
// only deep extend the items in the field array. These do not have shorthand. // only deep extend the items in the field array. These do not have shorthand.
util.selectiveDeepExtend(fields, parentOptions, newOptions, allowDeletion); util.selectiveDeepExtend(fields, parentOptions, newOptions, allowDeletion);

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

@ -104,6 +104,7 @@ class Edge {
'line', 'line',
'opacity', 'opacity',
'physics', 'physics',
'scaling',
'selectionWidth', 'selectionWidth',
'selfReferenceSize', 'selfReferenceSize',
'to', 'to',

Loading…
Cancel
Save