]> git.proxmox.com Git - pve-manager.git/commitdiff
ui: comment length cleanup to improve readability
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 22 Jul 2020 08:27:43 +0000 (10:27 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 22 Jul 2020 08:27:45 +0000 (10:27 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/manager6/panel/RunningChart.js

index 37473fcc9aeeb1378e7b06aae11c0df2ec7a3ec5..56c84eabe9543a97cfa78a29a736127ae193cc41 100644 (file)
@@ -1,8 +1,6 @@
 /*
- * This is a running chart widget
- * you add time datapoints to it,
- * and we only show the last x of it
- * used for ceph performance charts
+ * This is a running chart widget you add time datapoints to it, and we only
+ * show the last x of it used for ceph performance charts
  */
 Ext.define('PVE.widget.RunningChart', {
     extend: 'Ext.container.Container',
@@ -93,12 +91,10 @@ Ext.define('PVE.widget.RunningChart', {
        }
     ],
 
-    // the renderer for the tooltip and last value,
-    // default just the value
+    // the renderer for the tooltip and last value, default just the value
     renderer: Ext.identityFn,
 
-    // show the last x seconds
-    // default is 5 minutes
+    // show the last x seconds default is 5 minutes
     timeFrame: 5*60,
 
     addDataPoint: function(value, time) {