Skip to content

Commit

Permalink
Revert tableLayout since it cuts off information
Browse files Browse the repository at this point in the history
  • Loading branch information
Aktanusa committed Mar 6, 2018
1 parent 3ec7b67 commit 5689ffb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CookieMonster.js
Original file line number Diff line number Diff line change
Expand Up @@ -734,8 +734,9 @@ CM.Disp.CreateBotBar = function() {
table.style.width = '100%';
table.style.textAlign = 'center';
table.style.whiteSpace = 'nowrap';
table.style.tableLayout = 'fixed';
table.style.overflow = 'hidden';
// TODO figure a better way
//table.style.tableLayout = 'fixed';
//table.style.overflow = 'hidden';
var tbody = document.createElement('tbody');
table.appendChild(tbody);

Expand Down
5 changes: 3 additions & 2 deletions src/Disp.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,9 @@ CM.Disp.CreateBotBar = function() {
table.style.width = '100%';
table.style.textAlign = 'center';
table.style.whiteSpace = 'nowrap';
table.style.tableLayout = 'fixed';
table.style.overflow = 'hidden';
// TODO figure a better way
//table.style.tableLayout = 'fixed';
//table.style.overflow = 'hidden';
var tbody = document.createElement('tbody');
table.appendChild(tbody);

Expand Down

0 comments on commit 5689ffb

Please sign in to comment.