Issue 76: buttons and any input boxes dont work
Status:  New
Owner: ----
Reported by neil.jad...@gmail.com, Apr 23, 2012
What steps will reproduce the problem?
1.load the page
2.
3.

What is the expected output? What do you see instead?
the html elements must work but they dont

What version of the product are you using? On what operating system?
 v4.1.7 for android

Please provide any additional information below.
Aug 14, 2012
#1 jamie.p...@gmail.com
I've fixed this with the following changes starting with line 101 (v4.1.9)

	onBeforeScrollStart: function (e) { 
              if (['SELECT','INPUT','TEXTAREA'].indexOf(String(e.target.tagName).toUpperCase()) == -1) {
                 e.preventDefault(); 
              }
	   },
	onScrollStart: null,
	onBeforeScrollMove: function(e){e.preventDefault();},