aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/content/scrolls.js23
1 files changed, 8 insertions, 15 deletions
diff --git a/src/content/scrolls.js b/src/content/scrolls.js
index 1fa88d1..f3124a1 100644
--- a/src/content/scrolls.js
+++ b/src/content/scrolls.js
@@ -62,29 +62,22 @@ class Scroller {
}
scrollTo(x, y) {
- let behavior = this.smooth ? 'smooth' : 'auto';
+ if (!this.smooth) {
+ this.element.scrollTo(x, y);
+ return;
+ }
this.element.scrollTo({
left: x,
top: y,
- behavior: behavior,
+ behavior: 'smooth',
});
- if (!this.smooth) {
- return;
- }
this.prepareReset();
}
scrollBy(x, y) {
- let behavior = this.smooth ? 'smooth' : 'auto';
- this.element.scrollBy({
- left: x,
- top: y,
- behavior: behavior,
- });
- if (!this.smooth) {
- return;
- }
- this.prepareReset();
+ let left = this.element.scrollLeft + x;
+ let top = this.element.scrollTop + y;
+ this.scrollTo(left, top);
}
prepareReset() {