* 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

@ -70,6 +70,10 @@ TextView.prototype.setFocus = function(focused) {
this.client.term.write(this.getANSIColor(this.getFocusColor()));
};
TextView.prototype.getViewData = function() {
return this.text;
};
TextView.prototype.setText = function(text) {
this.text = text;