Open GoogleCodeExporter opened 8 years ago
Hi,
This code is working perfectly at iOS5, the same code (.epub) is not working on
the iOS6. Much appreciated receiving the revised code.
G
Original comment by gthukka...@gmail.com
on 26 Sep 2012 at 11:09
[deleted comment]
[deleted comment]
how can i do if i want to type as password in text box? because when i follow
by your codes above it's appear all text show but now i need to type password
kind of text box
Original comment by toeurt...@gmail.com
on 22 Dec 2012 at 2:10
I modified Roland's patch to fix the original problem for iOS6.1.3 on an iPad
4, but I have no other iThings for testing it.
The updated patch goes into the "touchstart" case in iPadTouchHandler(), and it
can be applied either to this plugin or to Josh Gerdes's version on GitHub to
fix this problem:
switch (event.type) {
case "touchstart":
if ($(event.changedTouches[0].target).is("select")) {
return;
}
// patch begins here
if ($(event.changedTouches[0].target).is("input")) {
return false; // allow access to keyboard on text input
}
// patch ends here
iPadTouchStart(event); /*We need to trigger two events here to support one touch drag and drop*/
event.preventDefault();
return false;
break;
Original comment by georges....@gmail.com
on 7 Apr 2013 at 3:04
Original issue reported on code.google.com by
roland.c...@googlemail.com
on 10 Feb 2012 at 5:21