diff --git a/src/js/familyTree.tw b/src/js/familyTree.tw index 2799e8431834763ee26e2d1b3b118896927bc32a..6f783ff53daec4a862e3afc1b3cb3f1dcc653c11 100644 --- a/src/js/familyTree.tw +++ b/src/js/familyTree.tw @@ -39,9 +39,13 @@ window.renderFamilyTree = function(slaves, filterID) { ftreeHeight = data.nodes.length * 35; if(ftreeWidth < 600) { ftreeWidth = 600; + } else if(ftreeWidth > 1920) { + ftreeWidth = 1920; } if(ftreeHeight < 480) { ftreeHeight = 480; + } else if(ftreeHeight > 1200) { + ftreeHeight = 1200; } margin = {top:0, left:0, bottom:0, right:0 }