From 5689ffb36e5c2f2032ad4e95282843b75ee199ba Mon Sep 17 00:00:00 2001 From: Aktanusa Date: Mon, 5 Mar 2018 21:08:26 -0500 Subject: [PATCH] Revert tableLayout since it cuts off information --- CookieMonster.js | 5 +++-- src/Disp.js | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CookieMonster.js b/CookieMonster.js index 00f1d19..d7a641d 100644 --- a/CookieMonster.js +++ b/CookieMonster.js @@ -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); diff --git a/src/Disp.js b/src/Disp.js index 3467e50..bb3e6e0 100644 --- a/src/Disp.js +++ b/src/Disp.js @@ -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);