From d752ea9abcff6ae6d64200af2273c61733392186 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Tue, 7 Jun 2016 01:42:01 +0200 Subject: [PATCH] frio: fix close hovercard on mousleave --- view/theme/frio/js/hovercard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/js/hovercard.js b/view/theme/frio/js/hovercard.js index 518505c5ab..6e2a827cd6 100644 --- a/view/theme/frio/js/hovercard.js +++ b/view/theme/frio/js/hovercard.js @@ -86,7 +86,7 @@ $(document).ready(function(){ } } }, 500); - }).on("mouseleave", ".userinfo", function(e) { // action when mouse leaves the hover-card + }).on("mouseleave", ".userinfo, .wall-item-responses a, .wall-item-bottom .mention a", function(e) { // action when mouse leaves the hover-card var timeNow = new Date().getTime(); // copy the original title to the title atribute var title = $(this).attr("data-orig-title");