Quellcode durchsuchen

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

maTh vor 3 Jahren
Ursprung
Commit
1c1e63c6ad
1 geänderte Dateien mit 1 neuen und 3 gelöschten Zeilen
  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;
 	}