Merge pull request #859 from corinnekrych/patch-1

fix issues in IE8 with onPropertyChange. IE8 was looping.
This commit is contained in:
Harutyun Amirjanyan 2012-08-07 08:19:58 -07:00
commit 5316f97ba2

View file

@ -118,7 +118,9 @@ var TextInput = function(parentNode, host) {
var onPropertyChange = function(e) {
setTimeout(function() {
if (!inCompostion)
sendText();
if(text.value != "") {
sendText();
}
}, 0);
};