remove unnecessary calls()

This commit is contained in:
Iuri Matias 2017-02-19 09:11:17 -05:00
parent 1d42d6d934
commit 4e8546863c
1 changed files with 7 additions and 7 deletions

View File

@ -29,13 +29,13 @@ CommandHistory.prototype.getNextCommand = function(cmd) {
};
function Dashboard(options) {
var title = options && options.title || "Embark 2.0";
var title = (options && options.title) || "Embark 2.3.0";
this.env = options.env;
this.console = options.console;
this.history = new CommandHistory();
this.color = options && options.color || "green";
this.minimal = options && options.minimal || false;
this.color = (options && options.color) || "green";
this.minimal = (options && options.minimal) || false;
this.screen = blessed.screen({
smartCSR: true,
@ -45,10 +45,10 @@ function Dashboard(options) {
autoPadding: true
});
this.layoutLog.call(this);
this.layoutStatus.call(this);
this.layoutModules.call(this);
this.layoutCmd.call(this);
this.layoutLog();
this.layoutStatus();
this.layoutModules();
this.layoutCmd();
this.screen.key(["C-c"], function() {
process.exit(0);