Miscellaneous minor code cleanup

# Conflicts:
#	graphene/Cargo.toml
This commit is contained in:
Keavon Chambers
2021-08-12 20:34:36 -07:00
parent db2fe322c3
commit 35d7fe8860
20 changed files with 31 additions and 12 deletions
+3 -1
View File
@@ -1,9 +1,11 @@
import { createApp } from "vue";
import { fullscreenModeChanged } from "@/utilities/fullscreen";
import { handleKeyUp, handleKeyDown, handleMouseDown } from "@/utilities/input";
import App from "@/App.vue";
import "@/utilities/errors";
import App from "@/App.vue";
// Bind global browser events
document.addEventListener("contextmenu", (e) => e.preventDefault());
document.addEventListener("fullscreenchange", () => fullscreenModeChanged());