(activeRequestTextarea)
| 450 | } |
| 451 | |
| 452 | const simulateUserPressingMoveMouseRight = (activeRequestTextarea) => { |
| 453 | if (activeRequestTextarea) { |
| 454 | let event = new KeyboardEvent("keydown", { key: "ArrowRight", keyCode: 39, which: 39, code: "ArrowRight" }); |
| 455 | activeRequestTextarea.dispatchEvent(event); |
| 456 | } |
| 457 | } |
| 458 | |
| 459 | |
| 460 | // Hide all code for the active cell |