diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-11-22 10:17:49 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-11-22 10:17:49 -0500 |
| commit | 9ab497b693d34e10b9db2d7603917d8d1296e350 (patch) | |
| tree | 81dd8ae4a595ce4a437f34c3b1ca3de44a5460e0 /js/lex.js | |
| parent | 69e0de28cb98b90d630c76d25f483ba59802d1d2 (diff) | |
fix width/height
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) { |
