Fix : Override browser default shortcuts on Linux/Windows system #8

Merged
Yehowshua merged 3 commits from fix-ctrl-l into main 2025-02-02 21:02:20 +00:00
Showing only changes of commit 138d3cef95 - Show all commits

View file

@ -29,6 +29,10 @@
) { ) {
event.preventDefault(); event.preventDefault();
} }
if (event.key === "Tab") {
event.preventDefault();
}
}); });
</script> </script>
</body> </body>