Only scroll to row on load

dev
gravel 1 year ago
parent 2ba599d3cc
commit 5be9106ffe
Signed by: gravel
GPG Key ID: C0538F3C906B308F

@ -88,6 +88,12 @@ function reactToURLParameters() {
return;
}
// manual scrolling to prevent jumping after every modal open
row.scrollIntoView({
behavior: "smooth"
});
try {
displayQRModal(communityID);
} catch (e) {
@ -183,12 +189,6 @@ function displayQRModal(communityID, pane = 0) {
location.hash=`#${communityID}`;
// manual scrolling to prevent jumping after every modal open
row.scrollIntoView({
behavior: "smooth"
});
modal.showModal();
}

Loading…
Cancel
Save