aboutsummaryrefslogtreecommitdiffstats
path: root/html
diff options
context:
space:
mode:
authorAdam Spiers <git@adamspiers.org>2015-01-10 17:40:04 +0000
committerAdam Spiers <git@adamspiers.org>2015-01-10 17:40:04 +0000
commit2efde6c4afcc4c773c49777aa16c360f39e65d4b (patch)
treeb81fc3d838a9d282bc9a31de78c9c71dfe81d4e4 /html
parentcc7e64d4b7235c42405aa7301cf3176568b3b004 (diff)
downloadgit-deps-2efde6c4afcc4c773c49777aa16c360f39e65d4b.tar.gz
notify as soon as we have new data
Diffstat (limited to 'html')
-rw-r--r--html/js/git-deps-graph.js3
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);