Fixed balloon tooltips
authorMarcel Werk <burntime@woltlab.com>
Wed, 14 Mar 2012 19:46:02 +0000 (20:46 +0100)
committerMarcel Werk <burntime@woltlab.com>
Wed, 14 Mar 2012 19:46:02 +0000 (20:46 +0100)
wcfsetup/install/files/js/WCF.js

index 924205e7b2027e8443c61b4bfefcab587c7a8cd1..f3d1164c016bd61ab694829fa42fd245bbeee593 100644 (file)
@@ -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
+               });
        }
 };