diff --git a/src/client/dom/mouse.ts b/src/client/dom/mouse.ts deleted file mode 100644 index 2e0c26c..0000000 --- a/src/client/dom/mouse.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { ScramjetClient } from "../client"; - -export default function (client: ScramjetClient, self: typeof window) { - client.Proxy("MouseEvent.prototype.initMouseEvent", { - apply(ctx) { - // Proxy(Window) instanceof Window SHOULD return true. But uhh, it doesn't. - ctx.args[3] = self; - - ctx.call(); - }, - }); -}