This commit is contained in:
Christopher Jeffrey 2013-02-27 12:24:38 -06:00
parent 983dfa943e
commit 8a3f29fddb
1 changed files with 5 additions and 5 deletions

View File

@ -76,15 +76,15 @@ Program.prototype.setupTput = function() {
};
Object.keys(tput).forEach(function(key) {
if (self[key] != null) return;
self[key] = tput[key];
});
if (self[key] == null) {
self[key] = tput[key];
}
Object.keys(tput).forEach(function(key) {
if (typeof tput[key] !== 'function') {
self.put[key] = tput[key];
return;
}
if (options.padding) {
self.put[key] = function() {
return tput._print(tput[key].apply(tput, arguments), write);
@ -1081,7 +1081,7 @@ Program.prototype.eraseInDisplay = function(param) {
};
Program.prototype.clear = function() {
if (this.tput) return this.tput.clear();
if (this.tput) return this.put.clear();
return this.write('\x1b[H\x1b[J');
// return this.ed('all');
};