浏览代码

fixed: Global view - Stick the article to the top when opened (#5153)

maTh 3 年之前
父节点
当前提交
1c1e63c6ad
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      p/scripts/main.js

+ 1 - 3
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;
 	}