Fix typo
Change-Id: I4c07c12e24d14577723a751104fe2c51ff1f052e
This commit is contained in:
parent
df223f20fe
commit
d5c47ef986
1 changed files with 2 additions and 2 deletions
|
@ -154,8 +154,8 @@ L.Control.MobileInput = L.Control.extend({
|
|||
}
|
||||
|
||||
if (charCode > 0xFFFF) {
|
||||
// We must handle non-BMP code points as two separate key events
|
||||
// because the sad VCL KeyEvent only takes a 16-bit "characters".
|
||||
// We must handle non-BMP code points as two separate keys
|
||||
// because the sad VCL KeyEvent only takes a 16-bit "character".
|
||||
var surrogatePair = this._getSurrogatePair(charCode);
|
||||
docLayer._postKeyboardEvent('input', surrogatePair[0], unoKeyCode);
|
||||
docLayer._postKeyboardEvent('up', surrogatePair[0], unoKeyCode);
|
||||
|
|
Loading…
Reference in a new issue