Open GoogleCodeExporter opened 9 years ago
later it seems that the solution works only id the is no need to scroll. I have
maneged to make the elements respond unsing alert to interupt the handleEvent
function
Original comment by obog...@gmail.com
on 28 Mar 2011 at 2:46
later found a preaty weird sollution that enable scrolling and touching the
sliders. Since the sliders are divs I modified the touchStart function in
iScroll.js by placing
if (e.target.tagName != "DIV"){
e.preventDefault();
e.stopPropagation();
}
instead of:
e.preventDefault();
e.stopPropagation();
and it works like a charm :|. This is very weird since 98 of the html test
file is made out of divs. This should work for all input types.
Cheers
Original comment by obog...@gmail.com
on 29 Mar 2011 at 12:11
Original issue reported on code.google.com by
obog...@gmail.com
on 28 Mar 2011 at 2:31