From 3f4c98e95591c4109401fd8c670c4361b9446ce0 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Tue, 12 May 2015 13:31:01 +0300 Subject: client/view/graph_view: removing debug argument to link_on_hover --- src/client/view/graph_view.js | 4 ++-- 1 file 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) { -- cgit v1.3.1