Going back to the old 0-0-0-0-0 method of hiding the text area... as doing otherwise causes issues with focus and "Enter" on Android.

This commit is contained in:
Michael Jumper
2012-03-21 19:19:04 -07:00
parent eb71eb305f
commit a10a7886a9

View File

@@ -218,8 +218,10 @@ textarea#eventTarget {
position: fixed;
/* Hide offscreen */
left: 100%;
top: 100%;
left: 0;
top: 0;
width: 0;
height: 0;
opacity: 0;
overflow: hidden;