Browse Source

Fixed #949 delete callbacks with null argument not showing toolbar afterwards.

flowchartTest
Alex de Mulder 9 years ago
parent
commit
3507d267f6
3 changed files with 10680 additions and 10670 deletions
  1. +3
    -0
      HISTORY.md
  2. +10673
    -10670
      dist/vis.js
  3. +4
    -0
      lib/network/modules/ManipulationSystem.js

+ 3
- 0
HISTORY.md View File

@ -12,6 +12,9 @@ http://visjs.org
### Network
- Fixed Hammerjs direction issue.
- Fixed recursion error when node is fixed but has no position.
- Fixed accidental redrawing during stabilization.
- Fixed delete callbacks with null argument not showing toolbar afterwards.
## 2015-06-16, version 4.3.0

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


+ 4
- 0
lib/network/modules/ManipulationSystem.js View File

@ -453,6 +453,10 @@ class ManipulationSystem {
this.body.emitter.emit('startSimulation');
this.showManipulatorToolbar();
}
else {
this.body.emitter.emit('startSimulation');
this.showManipulatorToolbar();
}
});
}
else {

Loading…
Cancel
Save