Automatically reset text area on keyboard events if native OSK is enabled/assumed. Hide text area via CSS.

This commit is contained in:
Michael Jumper
2012-03-21 16:42:01 -07:00
parent 0c4c47ecc4
commit 94d0b001bb
3 changed files with 24 additions and 10 deletions

View File

@@ -211,3 +211,10 @@ div#viewportClone {
visibility: hidden;
}
textarea#eventTarget {
position: fixed;
width: 0;
height: 0;
opacity: 0;
}