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);