I still find that if you have 2 or more menus on the same page, when you pass the mouse over them, they open up, but then disappear before you can make a choice. It makes the menu unusable, and because of that I have not been able to upgrade.
--
TWiki:TimJacob
- 2012-09-18
Confirmed. Reported by Tim in
TWiki:Plugins.TopMenuSkinDev
.
--
TWiki:Main/PeterThoeny
- 2012-09-18
Simple fix:
--- data/TWiki/TopMenuSkin.txt (revision 23384)
+++ data/TWiki/TopMenuSkin.txt (working copy)
@@ -117,7 +117,7 @@
if(twmenuitem) { twmenuitem.css('visibility', 'hidden'); }
}
function twTopMenuTimer() {
- twclosetimer = window.setTimeout(twTopMenuClose, twtimeout);
+ if(!twclosetimer) { twclosetimer = window.setTimeout(twTopMenuClose, twtimeout); }
}
function twTopMenuCancelTimer() {
if(twclosetimer) { window.clearTimeout(twclosetimer); twclosetimer = null; }
This is now in SVN trunk and 5.1 release. Skin update uploaded to TWiki.org as well.
--
TWiki:Main/PeterThoeny
- 2012-09-18