diff options
| -rw-r--r-- | p/scripts/main.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js index bca6c2407..28886180e 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -447,9 +447,7 @@ function toggleContent(new_active, old_active, skipping) { // when skipping, this feels more natural if it’s not so near the top new_pos -= document.body.clientHeight / 4; } - if (relative_move) { - new_pos += box_to_move.scrollTop; - } + box_to_move.scrollTop = new_pos; } |
