Merge pull request #859 from corinnekrych/patch-1
fix issues in IE8 with onPropertyChange. IE8 was looping.
This commit is contained in:
commit
5316f97ba2
1 changed files with 3 additions and 1 deletions
|
|
@ -118,7 +118,9 @@ var TextInput = function(parentNode, host) {
|
|||
var onPropertyChange = function(e) {
|
||||
setTimeout(function() {
|
||||
if (!inCompostion)
|
||||
sendText();
|
||||
if(text.value != "") {
|
||||
sendText();
|
||||
}
|
||||
}, 0);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue