aboutsummaryrefslogtreecommitdiff
path: root/src/Utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/Utils.ts')
-rw-r--r--src/Utils.ts30
1 files changed, 17 insertions, 13 deletions
diff --git a/src/Utils.ts b/src/Utils.ts
index ddc16dceb..6eacd8296 100644
--- a/src/Utils.ts
+++ b/src/Utils.ts
@@ -552,19 +552,23 @@ export function simulateMouseClick(element: Element | null | undefined, x: numbe
screenY: sy,
})));
- rightClick && element.dispatchEvent(
- new MouseEvent("contextmenu", {
- view: window,
- bubbles: true,
- cancelable: true,
- button: 2,
- clientX: x,
- clientY: y,
- movementX: 0,
- movementY: 0,
- screenX: sx,
- screenY: sy,
- }));
+ if (rightClick) {
+ const me =
+ new MouseEvent("contextmenu", {
+ view: window,
+ bubbles: true,
+ cancelable: true,
+ button: 2,
+ clientX: x,
+ clientY: y,
+ movementX: 0,
+ movementY: 0,
+ screenX: sx,
+ screenY: sy,
+ });
+ (me as any).dash = true;
+ element.dispatchEvent(me);
+ }
}
export function lightOrDark(color: any) {