mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-11 15:47:09 -07:00
13 lines
332 B
JavaScript
13 lines
332 B
JavaScript
// Allow iOS devices to disable scrolling of the body/virtual table
|
|
// when a modal is open. This will prevent focusing an input in a
|
|
// modal causing the modal to close due to scrolling.
|
|
|
|
let scrollLock = false;
|
|
|
|
export function isLocked() {
|
|
return scrollLock;
|
|
}
|
|
|
|
export function setScrollLock(locked) {
|
|
scrollLock = locked;
|
|
}
|