Repository: qpid-dispatch Updated Branches: refs/heads/master f67377c99 -> 855011938
DISPATCH-1169 Fix link info popup remaining on console's topology page Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/85501193 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/85501193 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/85501193 Branch: refs/heads/master Commit: 8550119381715c7f3e090331ec934e4a9a1d8754 Parents: f67377c Author: Ernest Allen <[email protected]> Authored: Mon Nov 5 07:10:21 2018 -0500 Committer: Ernest Allen <[email protected]> Committed: Mon Nov 5 07:10:21 2018 -0500 ---------------------------------------------------------------------- console/stand-alone/plugin/js/topology/qdrTopology.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/85501193/console/stand-alone/plugin/js/topology/qdrTopology.js ---------------------------------------------------------------------- diff --git a/console/stand-alone/plugin/js/topology/qdrTopology.js b/console/stand-alone/plugin/js/topology/qdrTopology.js index eeb4496..c78b5f7 100644 --- a/console/stand-alone/plugin/js/topology/qdrTopology.js +++ b/console/stand-alone/plugin/js/topology/qdrTopology.js @@ -930,7 +930,11 @@ export class TopologyController { let pwidth = $('#popover-div').width(); d3.select('#popover-div') .style('visibility', 'visible') - .style('left',(Math.min(width-pwidth, event.pageX+5) + 'px')); + .style('left',(Math.min(width-pwidth, event.pageX+5) + 'px')) + .on('mouseout', function () { + d3.select(this) + .style('display', 'none'); + }); }); }; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
