mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Revert "Disable scrolling in player"
This reverts commit 1a36d96f48
.
Reverted due to it disabling pull to refresh on mobile :(
This commit is contained in:
parent
1e4ec0cbb2
commit
3543ec093f
2 changed files with 0 additions and 15 deletions
|
@ -10,14 +10,6 @@ body {
|
|||
font-size: 1.0248em;
|
||||
}
|
||||
|
||||
/* Disable scroll in player (PWA improvement) */
|
||||
html.no-scroll,
|
||||
body.no-scroll {
|
||||
overflow: hidden !important;
|
||||
height: 100% !important;
|
||||
touch-action: none !important;
|
||||
}
|
||||
|
||||
html[data-full],
|
||||
html[data-full] body {
|
||||
overscroll-behavior-y: none;
|
||||
|
|
|
@ -54,13 +54,6 @@ export function RealPlayerView() {
|
|||
});
|
||||
useEffect(() => {
|
||||
reset();
|
||||
document.documentElement.classList.add("no-scroll");
|
||||
document.body.classList.add("no-scroll");
|
||||
|
||||
return () => {
|
||||
document.documentElement.classList.remove("no-scroll");
|
||||
document.body.classList.remove("no-scroll");
|
||||
};
|
||||
}, [paramsData, reset]);
|
||||
|
||||
const metaChange = useCallback(
|
||||
|
|
Loading…
Reference in a new issue