diff options
Diffstat (limited to 'js/lex.js')
| -rw-r--r-- | js/lex.js | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,6 +21,10 @@ Lex.prototype.css = function(){ Lex.prototype.html = function(){ return this.char == " " ? " " : this.char || " " } +Lex.prototype.read = function(){ + this.char = this.span.innerHTML + return this.char +} Lex.prototype.irc = function(){ var char = this.char == "%" ? '%%' : this.char || " " if (this.bg == 1 && this.fg == 0) { |
