Network topology collector and visualizer. Collects network topology data from dynamic mesh routing protocols or other popular networking software like OpenVPN, allows to visualize the network graph, save daily snapshots that can be viewed in the future and more.
The previous patch in #176 did an asynchronous request to fetch NetJSONGraph data. If the request promise didn't resovle before initialization of the graph (i.e. it took a long time for a response), then the graph was initialized with the default graphConfig. This caused the logic added to disable layoutAnimation to become obsolete.
This patch fixes this issue by updating graphConfig in NetJSONGraph.onLoad.
Coverage: 99.328%. Remained the same when pulling f2bce5f7bb5219ffaa1b4e9507be61ec3dac73ef on issues/164-network-topology into 4310967dd3ed89fa6ad12765e36afa882d42c8b5 on master.
The previous patch in #176 did an asynchronous request to fetch NetJSONGraph data. If the request promise didn't resovle before initialization of the graph (i.e. it took a long time for a response), then the graph was initialized with the default graphConfig. This caused the logic added to disable layoutAnimation to become obsolete. This patch fixes this issue by updating graphConfig in NetJSONGraph.onLoad.
Related to #176