![]() |
Phonegap example app running on my HTC Desire |
The scrolling issue needed a slight code adjustment:
function init(){
document.addEventListener("touchmove", false);
document.addEventListener("deviceready", deviceInfo, true);
}
The first line of the function did read: document.addEventListener("touchmove", preventBehavior, false);
I will now continue to play with Phonegap but I'm starting to see it's limitations. I can see it not being very responsive and obviously games are out of the question. When I say games I mean anything with any movement, puzzle and strategy etc should be ok. In fact it maybe worth looking at some existing Javascript stuff and maybe porting it to Phonegap.