From: Marcel Werk Date: Wed, 14 Mar 2012 19:46:02 +0000 (+0100) Subject: Fixed balloon tooltips X-Git-Tag: 2.0.0_Beta_1~1230 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=90a8839c2a0d29c8fd71c749b2fc83b9f6ac7ce5;p=GitHub%2FWoltLab%2FWCF.git Fixed balloon tooltips --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 924205e7b2..f3d1164c01 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -3108,7 +3108,7 @@ WCF.Effect.BalloonTooltip.prototype = { }); // show tooltip - this._tooltip.fadeIn('fast'); + this._tooltip.wcfFadeIn(); }, /** @@ -3117,7 +3117,9 @@ WCF.Effect.BalloonTooltip.prototype = { * @param object event */ _mouseLeaveHandler: function(event) { - this._tooltip.hide(); + this._tooltip.stop().hide().css({ + opacity: 1 + }); } };