Merge branch 'main' into screen-enhance

This commit is contained in:
Matt Walsh
2026-04-15 09:40:02 -05:00
8 changed files with 11 additions and 10 deletions

View File

@@ -112,9 +112,11 @@ const kioskChange = (value) => {
if (value) {
body.classList.add('kiosk');
document.querySelector('#divTwc')?.classList.add('no-cursor');
window.dispatchEvent(new Event('resize'));
} else {
body.classList.remove('kiosk');
document.querySelector('#divTwc')?.classList.remove('no-cursor');
window.dispatchEvent(new Event('resize'));
}