iscroll
iscroll copied to clipboard
Set options { click:true } cause this problem?
demos/forms/index.html
js
function loaded () {
myScroll = new IScroll('#wrapper', { mouseWheel: true, click: true });
}
html
<li><input type="date"></li>
<li><a href="http://www.google.com">google</a></li>
problems
- if set
'click: true'
, it can not click input elements. - if set
'click: false'
, it can not click A element
I have familiar problem.