diff options
author | Adam Spiers <git@adamspiers.org> | 2015-01-10 17:40:04 +0000 |
---|---|---|
committer | Adam Spiers <git@adamspiers.org> | 2015-01-10 17:40:04 +0000 |
commit | 2efde6c4afcc4c773c49777aa16c360f39e65d4b (patch) | |
tree | b81fc3d838a9d282bc9a31de78c9c71dfe81d4e4 /html | |
parent | cc7e64d4b7235c42405aa7301cf3176568b3b004 (diff) | |
download | git-deps-2efde6c4afcc4c773c49777aa16c360f39e65d4b.tar.gz |
notify as soon as we have new data
Diffstat (limited to 'html')
-rw-r--r-- | html/js/git-deps-graph.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/html/js/git-deps-graph.js b/html/js/git-deps-graph.js index e380219..80eb5d1 100644 --- a/html/js/git-deps-graph.js +++ b/html/js/git-deps-graph.js @@ -192,11 +192,10 @@ function draw_graph(commitish) { gdn.warn('No new commits or dependencies found!'); return; } + new_data_notification(new_data); update_cola(); - new_data_notification(new_data); - path = fg.selectAll(".link") .data(gdd.links, link_key); |