No Brett is just a friend of mine, so wrong credentials ! 🙂
BTW I found a correction changing the line
onBeforeScrollStart: function (e) { e.preventDefault(); },
to
onBeforeScrollStart: function (e) {
var nodeType = e.explicitOriginalTarget ? e.explicitOriginalTarget.nodeName.toLowerCase():(e.target ? e.target.nodeName.toLowerCase():”);
if(nodeType !=’select’ && nodeType !=’option’ && nodeType !=’input’ && nodeType!=’textarea’) {
e.preventDefault();
}
},
But I have not tested it on android.
It seems to work on iPhone and iPad so far
This is a known bug from iscroll