blessed-contrib
Advanced tools
Comparing version
{ | ||
"name": "blessed-contrib", | ||
"version": "1.0.9", | ||
"version": "1.0.10", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -49,2 +49,4 @@ var blessed = require('blessed') | ||
c.strokeStyle = 'blue' | ||
if (this.options.barBgColor) | ||
c.strokeStyle = this.options.barBgColor; | ||
c.fillRect(x, barY - h + 1, this.options.barWidth, h); | ||
@@ -56,2 +58,4 @@ } else { | ||
c.fillStyle = 'white' | ||
if (this.options.barFgColor) | ||
c.fillStyle = this.options.barFgColor; | ||
if (this.options.showText) | ||
@@ -58,0 +62,0 @@ c.fillText(bar.data[i].toString(), x + 1, this.canvasSize.height - 4); |
34369
0.48%822
0.49%