mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 04:45:19 +00:00
fix: wakelock
This commit is contained in:
parent
1c4e7f0324
commit
f6082579c9
1 changed files with 7 additions and 4 deletions
|
|
@ -60,10 +60,13 @@
|
|||
console.log(err);
|
||||
}
|
||||
|
||||
wakeLock.addEventListener('release', () => {
|
||||
// the wake lock has been released
|
||||
console.log('Wake Lock released');
|
||||
});
|
||||
if (wakeLock) {
|
||||
// Add a listener to release the wake lock when the page is unloaded
|
||||
wakeLock.addEventListener('release', () => {
|
||||
// the wake lock has been released
|
||||
console.log('Wake Lock released');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
if ('wakeLock' in navigator) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue