From 51c46715210ecd33cd7dd3c039d8c3642f053a9b Mon Sep 17 00:00:00 2001 From: Jannick Heisch Date: Wed, 31 Jan 2024 15:10:05 +0100 Subject: [PATCH] fix: chats were not scrollable --- android/tinySSB/app/src/main/assets/web/tremola.html | 4 ++-- android/tinySSB/app/src/main/assets/web/tremola_ui.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/android/tinySSB/app/src/main/assets/web/tremola.html b/android/tinySSB/app/src/main/assets/web/tremola.html index 19c6117..2df3e25 100644 --- a/android/tinySSB/app/src/main/assets/web/tremola.html +++ b/android/tinySSB/app/src/main/assets/web/tremola.html @@ -49,8 +49,8 @@
-
- + diff --git a/android/tinySSB/app/src/main/assets/web/tremola_ui.js b/android/tinySSB/app/src/main/assets/web/tremola_ui.js index ebebf37..cb1b38b 100644 --- a/android/tinySSB/app/src/main/assets/web/tremola_ui.js +++ b/android/tinySSB/app/src/main/assets/web/tremola_ui.js @@ -6,7 +6,7 @@ var overlayIsActive = false; var display_or_not = [ 'div:qr', 'div:back', - 'core', 'lst:chats', 'lst:posts', 'lst:contacts', 'lst:members', 'the:connex', + 'core', 'lst:chats', 'div:posts', 'lst:contacts', 'lst:members', 'the:connex', 'lst:kanban', 'div:footer', 'div:textarea', 'div:confirm-members', 'plus', 'div:settings', 'div:board' ]; @@ -17,7 +17,7 @@ var curr_scenario = 'chats'; var scenarioDisplay = { 'chats': ['div:qr', 'core', 'lst:chats', 'div:footer'], // 'plus' TODO reactivate when encrypted chats are implemented 'contacts': ['div:qr', 'core', 'lst:contacts', 'div:footer', 'plus'], - 'posts': ['div:back', 'core', 'lst:posts', 'div:textarea'], + 'posts': ['div:back', 'core', 'div:posts', 'div:textarea'], 'connex': ['div:qr', 'core', 'the:connex', 'div:footer', 'plus'], 'members': ['div:back', 'core', 'lst:members', 'div:confirm-members'], 'settings': ['div:back', 'div:settings', 'core'],