Restore textarea selection after paste in IE

This commit is contained in:
DanyaPostfactum 2012-11-30 20:18:44 +10:00
commit 81f58c4552

View file

@ -239,6 +239,8 @@ var TextInput = function(parentNode, host) {
var data = clipboardData.getData("Text");
if (data)
host.onPaste(data);
if (useragent.isIE)
setTimeout(resetSelection);
event.preventDefault(e);
}
else {