]> arthur.barton.de Git - netdata.git/blobdiff - web/index.html
Add missing comma to README.md
[netdata.git] / web / index.html
index 7e1a517ab6718bcbca3d6dde4e0f7addbff04872..a5bf5aaf654da62cf9ef7a03f22d8f0b72a0b352 100644 (file)
@@ -35,7 +35,7 @@
     <meta property="og:site_name"          content="netdata"/>
     <meta property="og:title"              content="Get control of your Linux Servers. Simple. Effective. Awesome." />
     <meta property="og:description"        content="Unparalleled insights, in real-time, of everything happening on your Linux systems and applications, with stunning, interactive web dashboards and powerful performance and health alarms." />
-    <meta property="og:image"              content="https://cloud.githubusercontent.com/assets/2662304/20910305/65d10354-bb69-11e6-8128-c44b547517b4.png" />
+    <meta property="og:image"              content="https://cloud.githubusercontent.com/assets/2662304/22945737/e98cd0c6-f2fd-11e6-96f1-5501934b0955.png" />
     <meta property="og:image:type"         content="image/png" />
     <meta property="fb:app_id"             content="1200089276712916" />
 
             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;
         }