Hello, ive got a problem.i cant set the cursor inside a textarea when the textarea has height set.
here jsfiddle: http://jsfiddle.net/yvyryrv7/4/
i could fix it by changing the function tapIgnoreEvent to (i only removed preventDefault).
//file ionic.bundle.js
function tapIgnoreEvent(e) {
if(e.isTapHandled) return true;
e.isTapHandled = true;
if( ionic.scroll.isScrolling && ionic.tap.containsOrIsTextInput(e.target) ) {
//e.preventDefault();
return true;
}
}
but i think by removing preventDefault something else will not work?
and the other thing is, that i cant scroll anymore when the textarea gains the focus.