laviastar / iscroll-js

Automatically exported from code.google.com/p/iscroll-js
MIT License
2 stars 2 forks source link

buttons and any input boxes dont work #76

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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.

Original issue reported on code.google.com by neil.jad...@gmail.com on 23 Apr 2012 at 2:25

GoogleCodeExporter commented 9 years ago
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();},

Original comment by jamie.p...@gmail.com on 14 Aug 2012 at 11:20