mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-04-07 14:09:12 +08:00
ie CJK space input
This commit is contained in:
@ -191,7 +191,7 @@
|
||||
global_keyboardEvent.KeyCode = e.keyCode;
|
||||
global_keyboardEvent.Which = e.which;
|
||||
|
||||
if ((global_keyboardEvent.KeyCode == 229) && (e.code == "space") || (e.code == "Space"))
|
||||
if ((global_keyboardEvent.KeyCode == 229) && ((e.code == "space") || (e.code == "Space") || (e.key == "Spacebar")))
|
||||
{
|
||||
global_keyboardEvent.KeyCode = 12288;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user