zhyz-cloudrender-v5 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cloudRender.es.js +3 -0
- package/cloudRender.js +3 -0
- package/cloudRender.umd.js +3 -0
- package/package.json +1 -1
package/cloudRender.es.js
CHANGED
|
@@ -22468,6 +22468,9 @@ function registerKeyboardEvents(ele, id) {
|
|
|
22468
22468
|
ele.setAttribute('tabindex', '10');
|
|
22469
22469
|
ele.focus();
|
|
22470
22470
|
ele.onkeydown = function (e) {
|
|
22471
|
+
if (e.keyCode == 76) {
|
|
22472
|
+
return;
|
|
22473
|
+
}
|
|
22471
22474
|
let key = e.key;
|
|
22472
22475
|
if (e.ctrlKey == true && key.toUpperCase() === 'B') ;
|
|
22473
22476
|
sendInputData$1(new Uint8Array([MessageType$1.KeyDown, getKeyCode(e), e.repeat]).buffer, id);
|
package/cloudRender.js
CHANGED
|
@@ -22473,6 +22473,9 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
22473
22473
|
ele.setAttribute('tabindex', '10');
|
|
22474
22474
|
ele.focus();
|
|
22475
22475
|
ele.onkeydown = function (e) {
|
|
22476
|
+
if (e.keyCode == 76) {
|
|
22477
|
+
return;
|
|
22478
|
+
}
|
|
22476
22479
|
let key = e.key;
|
|
22477
22480
|
if (e.ctrlKey == true && key.toUpperCase() === 'B') ;
|
|
22478
22481
|
sendInputData$1(new Uint8Array([MessageType$1.KeyDown, getKeyCode(e), e.repeat]).buffer, id);
|
package/cloudRender.umd.js
CHANGED
|
@@ -22474,6 +22474,9 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
22474
22474
|
ele.setAttribute('tabindex', '10');
|
|
22475
22475
|
ele.focus();
|
|
22476
22476
|
ele.onkeydown = function (e) {
|
|
22477
|
+
if (e.keyCode == 76) {
|
|
22478
|
+
return;
|
|
22479
|
+
}
|
|
22477
22480
|
let key = e.key;
|
|
22478
22481
|
if (e.ctrlKey == true && key.toUpperCase() === 'B') ;
|
|
22479
22482
|
sendInputData$1(new Uint8Array([MessageType$1.KeyDown, getKeyCode(e), e.repeat]).buffer, id);
|