| Issue 76: | buttons and any input boxes dont work | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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. |
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();},