From e2b0cf6727c991727799d2588d41366aaf58633a Mon Sep 17 00:00:00 2001 From: Murtuza Zabuawala Date: Mon, 11 Jun 2018 17:03:21 +0100 Subject: [PATCH] Fix labels and popups on EXPLAIN plan that were broken by the jQuery 3 update. Fixes #3404 --- web/pgadmin/misc/static/explain/js/explain.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pgadmin/misc/static/explain/js/explain.js b/web/pgadmin/misc/static/explain/js/explain.js index 61cf8f90a..e02877428 100644 --- a/web/pgadmin/misc/static/explain/js/explain.js +++ b/web/pgadmin/misc/static/explain/js/explain.js @@ -576,7 +576,7 @@ define('pgadmin.misc.explain', [ // Draw tooltip var image_data = this.toJSON(); - image.on('mouseover',() => { + image.mouseover(() => { // Empty the tooltip content if it has any and add new data toolTipContainer.empty(); @@ -618,7 +618,7 @@ define('pgadmin.misc.explain', [ }); // Remove tooltip when mouse is out from node's area - image.on('mouseout',() => { + image.mouseout(() => { toolTipContainer.empty(); toolTipContainer.css({ 'opacity': '0',