fixed a ascii-to-hex conversion bug in creole.js

This commit is contained in:
hyung-hwan 2015-03-31 14:10:02 +00:00
parent 5afc05ad1e
commit f06898a1af
3 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ $this->load->view (
<div id="wiki_show_mainarea_result">
<div id="wiki_show_mainarea_wiki">
<div class="result" id="wiki_show_mainarea_wiki">
<pre id="wiki_show_mainarea_wiki_text" style="visibility: hidden">
<?php print htmlspecialchars($wiki->text); ?>
</pre>

View File

@ -4,7 +4,6 @@
#wiki_show_mainarea_result {
position: relative;
min-height: 13em;
}
#wiki_show_mainarea_wiki {

View File

@ -237,6 +237,7 @@ var asciiToHex = function (x,dir) {
{
var seg = x.charCodeAt(i).toString(16);
if (seg.length == 1) seg = "0" + seg;
seg = "!" + seg;
}
}