Scroll to thumbnail when shrinking an expanded image

This commit is contained in:
topkek 2014-12-09 02:04:53 +00:00 committed by czaks
parent fd2b41c1f0
commit 63491b0b9a

View File

@ -74,10 +74,10 @@ onready(function(){
if (still_open > 1) { if (still_open > 1) {
if (e.target.getBoundingClientRect().top - padding < 0) if (e.target.getBoundingClientRect().top - padding < 0)
$('body').scrollTop($(e.target).parent().parent().offset().top - padding); $(document).scrollTop($(e.target).parent().parent().offset().top - padding);
} else { } else {
if (post_body[0].getBoundingClientRect().top - padding < 0) if (post_body[0].getBoundingClientRect().top - padding < 0)
$('body').scrollTop(post_body.offset().top - padding); $(document).scrollTop(post_body.offset().top - padding);
} }
} }