Fixing hall overflowing in case of a large number of tables.

This commit is contained in:
marcins78@gmail.com
2011-11-24 18:07:29 +00:00
parent 0f5014e812
commit 60e7a58b7d

View File

@@ -34,7 +34,7 @@ var GempLotrHallUI = Class.extend({
var height = $(div).height();
this.tablesDiv = $("<div></div>");
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 = $("<div></div>");