summaryrefslogtreecommitdiff
path: root/js/matrix.js
diff options
context:
space:
mode:
authorJules <jules@asdf.us>2015-04-20 00:42:17 -0400
committerJules <jules@asdf.us>2015-04-20 00:42:17 -0400
commit3c3be38fb6b85016e3e9aed973955688835a26dd (patch)
treee3de2bf10dc0d3c480285db6330775b1cca66e0d /js/matrix.js
parentaede4580450a2d8c37825d22871fa90cc15c1528 (diff)
timer button
Diffstat (limited to 'js/matrix.js')
-rw-r--r--js/matrix.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/matrix.js b/js/matrix.js
index 95314b6..d0c6301 100644
--- a/js/matrix.js
+++ b/js/matrix.js
@@ -170,13 +170,13 @@ Matrix.prototype.mirc = function () {
line += lex.sanitize()
}
else {
- if (x > 0 && last) line += "\x03"
+ // if (x > 0 && last) line += "\x03"
line += lex.mirc()
last = lex
}
})
- if (last && ! last.isClear()) { line += "\x03" }
- return line
+ // if (last && ! last.isClear()) { line += "\x03" }
+ return line.substr(0,400)
}).filter(function(line){ return line.length > 0 })
return lines.join("\n")
}