Make sure that the default value of the hidden input field is a space.

This commit is contained in:
samhed
2014-03-28 08:54:49 +01:00
parent 7cad15425e
commit df0ee70e36
2 changed files with 2 additions and 2 deletions

View File

@@ -854,7 +854,7 @@ keyInput: function(event) {
// another session there has to always be text in the
// keyboardinput element with which backspace can interact.
// We also need to reset the input field text to avoid overflow.
elem.value = "x";
elem.value = '\u00a0';
},
keyInputBlur: function() {