* More work on menu system and form handling. Lots of work to do!

This commit is contained in:
Bryan Ashby 2015-03-30 21:29:06 -06:00
parent d6ffa2b26e
commit 3274908586
7 changed files with 54 additions and 11 deletions

View file

@ -75,6 +75,7 @@ function ANSIEscapeParser(options) {
//self.bgColor = 0;
self.fgColor = 39;
self.bgColor = 49;
self.flags = 0;
};
self.rowUpdated = function() {
@ -298,8 +299,10 @@ function ANSIEscapeParser(options) {
self.bgColor = arg;
} else {
self.flags |= arg;
if(0 === arg) {
self.resetColor();
//self.flags = 0;
}
}
}