fix issues in IE8 with onPropertyChange. IE8 was looping.

This commit is contained in:
corinnekrych 2012-07-24 18:38:21 +03:00
commit e387c70f81

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);
};