From 2bdd35a00424f9c2d27e2631f140217d9ca4ddb1 Mon Sep 17 00:00:00 2001 From: nightwing Date: Sun, 3 Feb 2013 16:35:47 +0400 Subject: [PATCH] fix textarea positioning on ie --- lib/ace/keyboard/textinput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/keyboard/textinput.js b/lib/ace/keyboard/textinput.js index cda58170..e4def8b1 100644 --- a/lib/ace/keyboard/textinput.js +++ b/lib/ace/keyboard/textinput.js @@ -51,7 +51,7 @@ var TextInput = function(parentNode, host) { text.autocapitalize = "off"; text.spellcheck = false; - text.style.bottom = "-2em"; + text.style.bottom = "2000em"; parentNode.insertBefore(text, parentNode.firstChild); var PLACEHOLDER = "\x01\x01";