chore: final cleanup

This commit is contained in:
Subarashimo
2025-12-05 18:10:21 +01:00
parent 38328de1bf
commit 7e47dbfd7c
29 changed files with 338 additions and 2168 deletions
-4
View File
@@ -727,7 +727,6 @@ export function removeMobileTabs() {
*/
export function setupMobileKeyboardHandling() {
if (!window.visualViewport) {
// console.log('[RPG Mobile] Visual Viewport API not supported');
return;
}
@@ -750,12 +749,9 @@ export function setupMobileKeyboardHandling() {
// Keyboard just appeared
keyboardVisible = true;
$panel.addClass('rpg-keyboard-visible');
// console.log('[RPG Mobile] Keyboard opened');
} else if (!isKeyboardShowing && keyboardVisible) {
// Keyboard just disappeared
keyboardVisible = false;
$panel.removeClass('rpg-keyboard-visible');
// console.log('[RPG Mobile] Keyboard closed');
}
});
}