diff --git a/HISTORY.md b/HISTORY.md index f0150461..8c0cbe96 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -22,6 +22,13 @@ http://visjs.org - Added multiple types of smoothCurve drawing for greatly improved performance. - Option for inherited edge colors from connected nodes. - Option to disable the drawing of nodes or edges on drag. +- Fixed support nodes not being cleaned up if edges are removed. +- Improved edge selection detection for long smooth curves. +- Fixed dot radius bug. +- Updated max velocity of nodes to three times it's original value. +- Made "stabilized" event fire every time the network stabilizes. +- Fixed drift in dragging nodes while zooming. + ## 2014-07-07, version 3.0.0 diff --git a/docs/network.html b/docs/network.html index ef3866ff..070d902a 100644 --- a/docs/network.html +++ b/docs/network.html @@ -2417,7 +2417,8 @@ network.off('select', onSelect); stabilized - Fired when the network has been stabilized after initialization. This event can be used to trigger the .storePosition() function after stabilization. + Fired when the network has been stabilized. This event can be used to trigger the .storePosition() function after stabilization. When the network in initialized, the parameter + iterations will be the amount of iterations it took to stabilize. After initialization, this parameter is null.