From 60e7a58b7de82ffdc1f3a8d3c1bf519e11c0edbf Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Thu, 24 Nov 2011 18:07:29 +0000 Subject: [PATCH] Fixing hall overflowing in case of a large number of tables. --- gemp-lotr/gemp-lotr-web/src/main/webapp/js/hallUi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/js/hallUi.js b/gemp-lotr/gemp-lotr-web/src/main/webapp/js/hallUi.js index 230aabfc1..2d035d9e9 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/js/hallUi.js +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/js/hallUi.js @@ -34,7 +34,7 @@ var GempLotrHallUI = Class.extend({ var height = $(div).height(); this.tablesDiv = $("
"); - this.tablesDiv.css({scroll: "auto", left: "0px", top: "0px", width: width + "px", height: (height - 40) + "px"}); + this.tablesDiv.css({overflow: "auto", left: "0px", top: "0px", width: width + "px", height: (height - 40) + "px"}); this.div.append(this.tablesDiv); var buttonsDiv = $("
");