My favorites | Sign in
Project Home Downloads Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 76: buttons and any input boxes dont work
1 person starred this issue and may be notified of changes. Back to list
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();},

Powered by Google Project Hosting