projects
/
GitHub
/
WoltLab
/
WCF.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cbc0c5
)
Fixed balloon tooltips
author
Marcel Werk
<burntime@woltlab.com>
Wed, 14 Mar 2012 19:46:02 +0000
(20:46 +0100)
committer
Marcel Werk
<burntime@woltlab.com>
Wed, 14 Mar 2012 19:46:02 +0000
(20:46 +0100)
wcfsetup/install/files/js/WCF.js
patch
|
blob
|
blame
|
history
diff --git
a/wcfsetup/install/files/js/WCF.js
b/wcfsetup/install/files/js/WCF.js
index 924205e7b2027e8443c61b4bfefcab587c7a8cd1..f3d1164c016bd61ab694829fa42fd245bbeee593 100644
(file)
--- 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
+ });
}
};