Merge branch 'js_fixes' into 'dev'
fix page jumping when liking a collapsed/expanded post See merge request hubzilla/core!1484
This commit is contained in:
commit
1d314834a4
@ -845,10 +845,10 @@ function collapseHeight() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
var collapsedContentHeight = Math.ceil($("#region_2").height());
|
var collapsedContentHeight = Math.ceil($("#region_2").height());
|
||||||
contentHeightDiff = origContentHeight - collapsedContentHeight;
|
contentHeightDiff = liking ? 0 : origContentHeight - collapsedContentHeight;
|
||||||
console.log('collapseHeight() - contentHeightDiff: ' + contentHeightDiff + 'px');
|
console.log('collapseHeight() - contentHeightDiff: ' + contentHeightDiff + 'px');
|
||||||
|
|
||||||
if(i){
|
if(i && !liking){
|
||||||
var sval = position - cDiff + ($(".divgrow-showmore").outerHeight() * i);
|
var sval = position - cDiff + ($(".divgrow-showmore").outerHeight() * i);
|
||||||
console.log('collapsed above viewport count: ' + i);
|
console.log('collapsed above viewport count: ' + i);
|
||||||
$(window).scrollTop(sval);
|
$(window).scrollTop(sval);
|
||||||
|
Reference in New Issue
Block a user