summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--p/scripts/main.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js
index 69ac01816..7c3be3af4 100644
--- a/p/scripts/main.js
+++ b/p/scripts/main.js
@@ -251,9 +251,14 @@ function toggleContent(new_active, old_active) {
}
if (sticky_post) {
- var new_pos = new_active.position().top - new_active.children('.flux_header').outerHeight(),
+ var prev_article = new_active.prevAll('.flux'),
+ new_pos = new_active.position().top,
old_scroll = $(box_to_move).scrollTop();
+ if (prev_article.length > 0 && new_pos - prev_article.position().top <= 150) {
+ new_pos = prev_article.position().top;
+ }
+
if (hide_posts) {
if (relative_move) {
new_pos += old_scroll;