diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-012/DeckPanel.js b/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-012/DeckPanel.js index c47778a70..26b0bf439 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-012/DeckPanel.js +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-012/DeckPanel.js @@ -60,6 +60,7 @@ var DeckPanel = Class.extend({ return true; }); ringBearerGroup.setZIndexBase(100); + ringBearerGroup.setMaxCardHeight(200); this.ringBearerContainer.addCardGroup("main", ringBearerGroup); this.ringContainer = new CardContainer(this.ringDiv, this.layoutCardContainer); @@ -68,6 +69,7 @@ var DeckPanel = Class.extend({ return true; }); ringGroup.setZIndexBase(100); + ringGroup.setMaxCardHeight(200); this.ringContainer.addCardGroup("main", ringGroup); this.sitesContainer = new CardContainer(this.sitesDiv, this.layoutCardContainer); @@ -76,6 +78,7 @@ var DeckPanel = Class.extend({ return true; }); sitesGroup.setZIndexBase(100); + sitesGroup.setMaxCardHeight(200); this.sitesContainer.addCardGroup("main", sitesGroup); this.fpContainer = new CardContainer(this.fpDiv, this.layoutCardContainer); @@ -84,6 +87,7 @@ var DeckPanel = Class.extend({ return true; }); fpGroup.setZIndexBase(100); + fpGroup.setMaxCardHeight(200); this.fpContainer.addCardGroup("main", fpGroup); this.shadowContainer = new CardContainer(this.shadowDiv, this.layoutCardContainer); @@ -92,6 +96,7 @@ var DeckPanel = Class.extend({ return true; }); shadowGroup.setZIndexBase(100); + shadowGroup.setMaxCardHeight(200); this.shadowContainer.addCardGroup("main", shadowGroup); },