fixed a ascii-to-hex conversion bug in creole.js
This commit is contained in:
parent
5afc05ad1e
commit
f06898a1af
@ -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>
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
#wiki_show_mainarea_result {
|
||||
position: relative;
|
||||
min-height: 13em;
|
||||
}
|
||||
|
||||
#wiki_show_mainarea_wiki {
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user