aboutsummaryrefslogtreecommitdiff
path: root/src/content/scrolls.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/scrolls.js')
-rw-r--r--src/content/scrolls.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/scrolls.js b/src/content/scrolls.js
index a307aa7..1fa88d1 100644
--- a/src/content/scrolls.js
+++ b/src/content/scrolls.js
@@ -63,7 +63,7 @@ class Scroller {
scrollTo(x, y) {
let behavior = this.smooth ? 'smooth' : 'auto';
- window.scrollTo({
+ this.element.scrollTo({
left: x,
top: y,
behavior: behavior,
@@ -76,7 +76,7 @@ class Scroller {
scrollBy(x, y) {
let behavior = this.smooth ? 'smooth' : 'auto';
- window.scrollBy({
+ this.element.scrollBy({
left: x,
top: y,
behavior: behavior,