@xwadex/fesd 0.0.32 → 0.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -865,13 +865,13 @@ function Ei(n) {
|
|
865
865
|
const i = [];
|
866
866
|
n && n.forEach((t) => {
|
867
867
|
t instanceof HTMLElement ? i.push(t) : typeof t == "string" && i.push(...document.querySelectorAll(`${t}`));
|
868
|
-
}), v("html").addClass("scrollLock"), vs(i);
|
868
|
+
}), v("html").addClass("scrollLock"), vs(i), document.body.style.position = "fixed";
|
869
869
|
}
|
870
870
|
function Ai(n) {
|
871
871
|
const i = [];
|
872
872
|
n && n.forEach((t) => {
|
873
873
|
t instanceof HTMLElement ? i.push(t) : typeof t == "string" && i.push(...document.querySelectorAll(`${t}`));
|
874
|
-
}), v("html").removeClass("scrollLock"), bs(i);
|
874
|
+
}), v("html").removeClass("scrollLock"), bs(i), document.body.style.position = "unset";
|
875
875
|
}
|
876
876
|
async function fn(n = 0) {
|
877
877
|
if (v(".loading-wrapper").length)
|