mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix iOS Firefox viewport position when navigating from login
This commit is contained in:
@ -930,10 +930,17 @@ async function firstLoadInit() {
|
|||||||
initCfg();
|
initCfg();
|
||||||
initLogprobs();
|
initLogprobs();
|
||||||
doDailyExtensionUpdatesCheck();
|
doDailyExtensionUpdatesCheck();
|
||||||
hideLoader();
|
await hideLoader();
|
||||||
|
await fixViewport();
|
||||||
await eventSource.emit(event_types.APP_READY);
|
await eventSource.emit(event_types.APP_READY);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function fixViewport() {
|
||||||
|
document.body.style.position = 'absolute';
|
||||||
|
await delay(1);
|
||||||
|
document.body.style.position = '';
|
||||||
|
}
|
||||||
|
|
||||||
function cancelStatusCheck() {
|
function cancelStatusCheck() {
|
||||||
abortStatusCheck?.abort();
|
abortStatusCheck?.abort();
|
||||||
abortStatusCheck = new AbortController();
|
abortStatusCheck = new AbortController();
|
||||||
|
Reference in New Issue
Block a user