| Issue 9: | Google Chrome Click Events | |
| 1 person starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem? 1. Setup an area with the scroller. 2. Add a link to the area, and attach a click event. What is the expected output? What do you see instead? The event should fire when you click the link, but instead it doesn't. What version of the product are you using? On what operating system? 3.4.4, but also earlier versions, I'm not sure if its just 3.4 or also earlier. Please provide any additional information below.
Jul 3, 2010
(No comment was entered for this change.)
Labels:
-Priority-Low Priority-Medium
Jul 6, 2010
The error is on line 64 and not a bug with Chrome's event capturing. The event is being bound on capture and not bubble. It is expected behavior therefore that it would trigger before any events bound in the bubble phase. A simple and annoying workaround is to set all your click handlers to the capture phase as well.
The real fix is for iscroll to implement:
this.element.addEventListener('click', this, false);
Jul 8, 2010
It works ! thanks a lot
Aug 24, 2010
should be fixed in latest update
Status:
Fixed
|
Owner: matt3o
Labels: -Priority-Medium Priority-Low