Skip to content

Commit

Permalink
fix: chats were not scrollable
Browse files Browse the repository at this point in the history
  • Loading branch information
jannickheisch committed Jan 31, 2024
1 parent 5be4a79 commit 51c4671
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions android/tinySSB/app/src/main/assets/web/tremola.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@

<div id='lst:chats' class=w100 style='overflow: hidden'></div>

<div style="height: 100%; overflow-x: auto">
<table id='lst:posts' style="width: 100%; display: none; table-layout: auto;">
<div id='div:posts' style="height: 100%; overflow-x: auto; display: none;">
<table id='lst:posts' style="width: 100%; table-layout: auto;">
<colgroup>
<col span="1" style="width: 2%;"/>
<col span="1" style="width: 10%;"/>
Expand Down
4 changes: 2 additions & 2 deletions android/tinySSB/app/src/main/assets/web/tremola_ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
];
Expand All @@ -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'],
Expand Down

0 comments on commit 51c4671

Please sign in to comment.