pace icon indicating copy to clipboard operation
pace copied to clipboard

Scrolling console...

Open justindonnaruma opened this issue 11 years ago • 1 comments

Any chance we could get a scrolling console under the progress bar, so we can, while still using the progress bar, see the output of any console.log items left in for debugging?

justindonnaruma avatar May 30 '14 22:05 justindonnaruma

as a workaround, change this :

Pace.prototype.clear = function clear() {
  this.charm.erase('line').up(1).erase('line').up(1).erase('line').write("\r");
};

to

Pace.prototype.clear = function clear() {
  this.charm.erase('line').up(2).erase('line').up(1).erase('line').write("\r");
};

ysle avatar Aug 22 '14 00:08 ysle