3

When clicking a div with the attribute contenteditable:

<div contenteditable>Try typing here</div>

or any input, the keyboard comes up, but the user cannot type.

Is this a bug in Phonegap 2.1.0?

4

2 に答える 2

4

This piece of Css works better with Cordova v5.1.1

*[contenteditable] {
    -webkit-user-select: auto !important;
}
于 2015-07-31T14:45:49.260 に答える
3

This behaviour was solved by removing the default line in CSS:

* {
    -webkit-user-select: none;
}
于 2012-10-23T09:36:28.183 に答える