diff options
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/actions/operation.js | 8 | ||||
-rw-r--r-- | src/content/components/common/keymapper.js | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/content/actions/operation.js b/src/content/actions/operation.js index b96c6b9..e83387d 100644 --- a/src/content/actions/operation.js +++ b/src/content/actions/operation.js @@ -10,7 +10,7 @@ import * as markActions from './mark'; import * as properties from 'shared/settings/properties'; // eslint-disable-next-line complexity, max-lines-per-function -const exec = (operation, repeat, settings, addonEnabled) => { +const exec = (operation, settings, addonEnabled) => { let smoothscroll = settings.properties.smoothscroll || properties.defaults.smoothscroll; switch (operation.type) { @@ -31,13 +31,13 @@ const exec = (operation, repeat, settings, addonEnabled) => { }), '*'); break; case operations.SCROLL_VERTICALLY: - scrolls.scrollVertically(operation.count, smoothscroll, repeat); + scrolls.scrollVertically(operation.count, smoothscroll); break; case operations.SCROLL_HORIZONALLY: - scrolls.scrollHorizonally(operation.count, smoothscroll, repeat); + scrolls.scrollHorizonally(operation.count, smoothscroll); break; case operations.SCROLL_PAGES: - scrolls.scrollPages(operation.count, smoothscroll, repeat); + scrolls.scrollPages(operation.count, smoothscroll); break; case operations.SCROLL_TOP: scrolls.scrollToTop(smoothscroll); diff --git a/src/content/components/common/keymapper.js b/src/content/components/common/keymapper.js index 4c294b4..ec0d093 100644 --- a/src/content/components/common/keymapper.js +++ b/src/content/components/common/keymapper.js @@ -49,7 +49,7 @@ export default class KeymapperComponent { } let operation = keymaps.get(matched[0]); let act = operationActions.exec( - operation, key.repeat, state.setting, state.addon.enabled + operation, state.setting, state.addon.enabled ); this.store.dispatch(act); this.store.dispatch(inputActions.clearKeys()); |