Merge pull request #450 from AielloChan/master
fix(event): Remove command + arrow right navigation
This commit is contained in:
6
src-tauri/src/inject/event.js
vendored
6
src-tauri/src/inject/event.js
vendored
@@ -1,8 +1,10 @@
|
|||||||
const shortcuts = {
|
const shortcuts = {
|
||||||
ArrowUp: () => scrollTo(0, 0),
|
ArrowUp: () => scrollTo(0, 0),
|
||||||
ArrowDown: () => scrollTo(0, document.body.scrollHeight),
|
ArrowDown: () => scrollTo(0, document.body.scrollHeight),
|
||||||
ArrowLeft: () => window.history.back(),
|
// Don't use command + ArrowLeft or command + ArrowRight
|
||||||
ArrowRight: () => window.history.forward(),
|
// When editing text in page, it causes unintended page navigation.
|
||||||
|
// ArrowLeft: () => window.history.back(),
|
||||||
|
// ArrowRight: () => window.history.forward(),
|
||||||
'[': () => window.history.back(),
|
'[': () => window.history.back(),
|
||||||
']': () => window.history.forward(),
|
']': () => window.history.forward(),
|
||||||
r: () => window.location.reload(),
|
r: () => window.location.reload(),
|
||||||
|
|||||||
Reference in New Issue
Block a user