summaryrefslogtreecommitdiff
path: root/src/rz_core.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/rz_core.js')
-rw-r--r--src/rz_core.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/rz_core.js b/src/rz_core.js
index 1e8507b1..4dfda95b 100644
--- a/src/rz_core.js
+++ b/src/rz_core.js
@@ -356,6 +356,11 @@ function update_view__graph(no_relayout) {
link_g.append("path")
.attr("class", "ghostlink")
.on("click", function(d, i) {
+ if (zoomInProgress) {
+ // don't disable zoomInProgress, it will be disabled by the svg_click_handler
+ // after this events bubbles to the svg element
+ return;
+ }
var that = this,
src = this.link.__src,
dst = this.link.__dst;