diff options
Diffstat (limited to 'applications/luci-app-bmx7/root/www/luci-static')
-rw-r--r-- | applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js b/applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js index 66d0a5f155..5e9e02d26e 100644 --- a/applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js +++ b/applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js @@ -170,7 +170,7 @@ */ redraw: function() { panner.attr("transform", - "translate(" + d3.event.translate + ") " + + "trans"+"late(" + d3.event.translate + ") " + "scale(" + d3.event.scale + ")" ); }, @@ -507,7 +507,7 @@ }); labels.attr("transform", function(d) { - return "translate(" + d.x + "," + d.y + ")"; + return "trans"+"late(" + d.x + "," + d.y + ")"; }); }) .on("end", function(){ |