summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJulie Lala <jules@okfoc.us>2015-05-23 23:25:37 +0200
committerJulie Lala <jules@okfoc.us>2015-05-23 23:25:37 +0200
commit36591f5b1a70f562c8f581eb6731d5ddb7b50823 (patch)
tree8719d144c6b5fae3b8050b34db0e86103edc846c /js
parent36c7df9c9c680d6b6639654e0a28a435e48facf5 (diff)
FIX percent thing
Diffstat (limited to 'js')
-rw-r--r--js/lex.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/lex.js b/js/lex.js
index e491fe0..ff50a03 100644
--- a/js/lex.js
+++ b/js/lex.js
@@ -32,7 +32,7 @@ Lex.prototype.ascii = function(){
}
Lex.prototype.sanitize = function(){
switch (this.char) {
- case "%": return "%%"
+ case "%": return "%"
case undefined:
case "": return " "
default: return this.char