diff options
Diffstat (limited to 'src/content/actions/operation.js')
-rw-r--r-- | src/content/actions/operation.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/actions/operation.js b/src/content/actions/operation.js index 1302404..9187514 100644 --- a/src/content/actions/operation.js +++ b/src/content/actions/operation.js @@ -19,9 +19,9 @@ const exec = (operation) => { case operations.SCROLL_BOTTOM: return scrolls.scrollBottom(window); case operations.SCROLL_HOME: - return scrolls.scrollLeft(window); + return scrolls.scrollHome(window); case operations.SCROLL_END: - return scrolls.scrollRight(window); + return scrolls.scrollEnd(window); case operations.FOLLOW_START: return followActions.enable(false); case operations.NAVIGATE_HISTORY_PREV: |