fix Ox.encodeHTML

This commit is contained in:
rolux 2012-05-22 17:41:01 +02:00
parent 08e1561e43
commit 3f35003ac9

View file

@ -282,7 +282,7 @@
return code < 128
? (v in Ox.HTML_ENTITIES ? Ox.HTML_ENTITIES[v] : v)
: '&#x' + Ox.pad(code.toString(16).toUpperCase(), 4) + ';';
}).join('');
});
};
/*@