scottohara / tvmanager

PWA for tracking recorded, watched & upcoming TV shows
MIT License
3 stars 0 forks source link

iOS5/iScroll regression with input fields #16

Closed scottohara closed 12 years ago

scottohara commented 12 years ago

Needed to hack the _start function, and wrap the following if statement around e.preventDefault():

if (e.target.tagName.toLowerCase() !== "input" || e.target.type === "checkbox") { e.preventDefault(); }

scottohara commented 12 years ago

Temporary fix in place in v1.04.2.

(the hack also needed "|| e.target.readOnly" to prevent duplicate click events firing on SpinningWheel fields.

Waiting for official fix from Matteo, or switch to native overflow:scroll.

scottohara commented 12 years ago

No longer an issue after switching from iScroll to native overflow:scroll