From: SourceForge.net <no...@so...> - 2007-09-05 08:14:41
|
Bugs item #1780788, was opened at 2007-08-24 13:05 Message generated for change (Comment added) made by binhtq You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=1780788&group_id=5757 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: DynAPI 2 Events Group: Unverified Status: Open Resolution: None Priority: 7 Private: No Submitted By: BinhTruong (binhtq) Assigned to: Nobody/Anonymous (nobody) Summary: FireFox: Mouseover can not work with the tag <a title = ""> Initial Comment: Try to modify <a title = "Display title" class="testClass" href="#" onclick="make10()">make 10 nested layers</a><br /> in the file 10_deep_nesting.html The 'Display title' doesn't display when trying to move the mouse over href. I think the root cause is 'dynapi.event.*' is not created. If I remove this line, the 'Display title' displays. Can you suggest me the way to solve it? ---------------------------------------------------------------------- >Comment By: BinhTruong (binhtq) Date: 2007-09-05 15:14 Message: Logged In: YES user_id=1874614 Originator: YES The root cause comes from the checking of the condition in the function DynMouseEvent.EventMethod of the dynapi\src\lib\dynapi\event\mouse.js Old code: if (is.ie) var e=dynobject.frame.event e.cancelBubble=true; Fixing code: if (is.ie) { var e=dynobject.frame.event e.cancelBubble=true; } ---------------------------------------------------------------------- Comment By: BinhTruong (binhtq) Date: 2007-09-05 15:14 Message: Logged In: YES user_id=1874614 Originator: YES The bug has been verified and a fix for the bug has been implemented. The fix should be available in CVS as well as the next official release of the DynAPI. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=1780788&group_id=5757 |