remove trailing commas

This commit is contained in:
Iuri Matias 2016-10-22 20:16:00 -04:00
parent 9de3d20ee9
commit 42fd369cf4
1 changed files with 22 additions and 22 deletions

View File

@ -108,7 +108,7 @@ Dashboard.prototype.layoutLog = function() {
border: {
fg: this.color
}
},
}
});
this.logText = blessed.log({
@ -184,14 +184,14 @@ Dashboard.prototype.layoutAssets = function() {
left: "50%",
top: "42%",
border: {
type: "line",
type: "line"
},
style: {
fg: -1,
border: {
fg: this.color,
},
},
fg: this.color
}
}
});
this.assetTable = blessed.table({
@ -230,20 +230,20 @@ Dashboard.prototype.layoutStatus = function() {
label: "Environment",
tags: true,
padding: {
left: 1,
left: 1
},
width: "100%",
height: "20%",
valign: "middle",
border: {
type: "line",
type: "line"
},
style: {
fg: -1,
border: {
fg: this.color,
},
},
fg: this.color
}
}
});
this.operations = blessed.box({
@ -251,20 +251,20 @@ Dashboard.prototype.layoutStatus = function() {
label: "Status",
tags: true,
padding: {
left: 1,
left: 1
},
width: "100%",
height: "20%",
valign: "middle",
border: {
type: "line",
type: "line"
},
style: {
fg: -1,
border: {
fg: this.color,
},
},
fg: this.color
}
}
});
this.progress = blessed.box({
@ -283,9 +283,9 @@ Dashboard.prototype.layoutStatus = function() {
style: {
fg: -1,
border: {
fg: this.color,
},
},
fg: this.color
}
}
});
this.screen.append(this.wrapper);
@ -302,14 +302,14 @@ Dashboard.prototype.layoutCmd = function() {
left: '0%',
top: '95%',
border: {
type: 'line',
type: 'line'
},
style: {
fg: 'black',
border: {
fg: this.color,
},
},
fg: this.color
}
}
});
this.input = blessed.textbox({