Closed GoogleCodeExporter closed 8 years ago
It seems a bug in chrome events capturing. I'll look into this.
Original comment by mat...@gmail.com
on 2 Jul 2010 at 5:57
Original comment by mat...@gmail.com
on 3 Jul 2010 at 5:45
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);
Original comment by tim.bran...@gmail.com
on 6 Jul 2010 at 3:47
It works ! thanks a lot
Original comment by ph.charriere
on 9 Jul 2010 at 4:23
should be fixed in latest update
Original comment by mat...@gmail.com
on 24 Aug 2010 at 6:22
Original issue reported on code.google.com by
ritter...@gmail.com
on 30 Jun 2010 at 1:50