Browse Source

reverted example... again..

v3_develop
Alex de Mulder 9 years ago
parent
commit
83f7612954
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      examples/network/03_images.html

+ 2
- 2
examples/network/03_images.html View File

@ -34,10 +34,10 @@
// Create a data table with links.
edges = [];
nodes.push({id: 1, label: 'Main', image: DIR + 'Network-Pipe-icon.png', shape: 'image'});
nodes.push({id: 1, label: 'Main', image: DIR + 'Network-Pipe-icon.png', shape: 'image'});
nodes.push({id: 2, label: 'Office', image: DIR + 'Network-Pipe-icon.png', shape: 'image'});
nodes.push({id: 3, label: 'Wireless', image: DIR + 'Network-Pipe-icon.png', shape: 'image'});
edges.push({from: 1, to: 2, title:'world', length: LENGTH_MAIN});
edges.push({from: 1, to: 2, length: LENGTH_MAIN});
edges.push({from: 1, to: 3, length: LENGTH_MAIN});
for (var i = 4; i <= 7; i++) {

Loading…
Cancel
Save