From ec899fb5dbbe39f45f5dcc47ea39df3a38f2229f Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Tue, 28 Jul 2015 11:07:32 +0300 Subject: wip: find the nan for position update from db --- src/client/view/graph_view.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/client/view') diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js index da0a3435..b3938075 100644 --- a/src/client/view/graph_view.js +++ b/src/client/view/graph_view.js @@ -213,15 +213,18 @@ function GraphView(spec) { if (layout.name && diff.node_set_add) { diff.node_set_add.forEach(function (node) { if (node[layout_x_key] && node[layout_y_key]) { - node.x = node[layout_x_key]; - node.y = node[layout_y_key]; + node.px = node.x = node[layout_x_key]; + node.py = node.y = node[layout_y_key]; have_position += 1; } }); if (have_position > 0) { console.log('loading layout last position from database for layout ' + layout.name); layout__load_graph(); - relayout = false; + if (have_position == graph.nodes().length) { + console.log('no relayout because diff contains all graph nodes'); + relayout = false; + } } } update_view(relayout); -- cgit v1.3.1