summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/index.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/web/index.html b/web/index.html
index 6b36663064..a5bf5aaf65 100644
--- a/web/index.html
+++ b/web/index.html
@@ -880,15 +880,16 @@
families_idx: {},
chartsPerRow: 0,
- chartsMinWidth: 1450,
+ // chartsMinWidth: 1450,
chartsHeight: 180
};
function chartsPerRow(total) {
if(options.chartsPerRow === 0) {
- var width = Math.floor(total / options.chartsMinWidth);
- if(width === 0) width = 1;
- return width;
+ return 1;
+ //var width = Math.floor(total / options.chartsMinWidth);
+ //if(width === 0) width = 1;
+ //return width;
}
else return options.chartsPerRow;
}