You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ea...@apache.org on 2018/11/05 12:10:35 UTC

qpid-dispatch git commit: DISPATCH-1169 Fix link info popup remaining on console's topology page

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 <ea...@redhat.com>
Authored: Mon Nov 5 07:10:21 2018 -0500
Committer: Ernest Allen <ea...@redhat.com>
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: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org