diff options
| author | Alon Levy <alon@pobox.com> | 2015-05-12 13:31:01 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-05-12 13:31:01 +0300 |
| commit | 3f4c98e95591c4109401fd8c670c4361b9446ce0 (patch) | |
| tree | 6d9e3316681aa5d5de1424929b576becfab30741 | |
| parent | 373630b204632155898afc154bc1972b44b70a17 (diff) | |
client/view/graph_view: removing debug argument to link_on_hover
| -rw-r--r-- | src/client/view/graph_view.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js index ae29107e..1d325b5c 100644 --- a/src/client/view/graph_view.js +++ b/src/client/view/graph_view.js @@ -529,7 +529,7 @@ function GraphView(spec) { } } - var link_on_hover = function (d, debug_name) { + var link_on_hover = function (d) { $('#' + d.id).hover(function (e) { link__hover__start.call(this, d); }, function (e) { @@ -595,7 +595,7 @@ function GraphView(spec) { } link_g.each(function (d) { - link_on_hover(d, 'link-g'); + link_on_hover(d); }); link_g.on("click", function(d, i) { if (zoomInProgress) { |
