Skip to content

Commit

Permalink
Merge pull request sakura-editor#939 from m-tmatma/feature/fix-js-utf8
Browse files Browse the repository at this point in the history
HTML の Help 中の JavaScript の文字コードを UTF-8 に修正
  • Loading branch information
m-tmatma authored Jun 1, 2019
2 parents 9733cc5 + 1cccd3b commit d266e8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions help/plugin/Text/item.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// HHCtrls
// HHCtrls
function HHCtrlClose()
{
document.writeln('<OBJECT id="aaHHCtlCloseWin" type="application/x-oleobject"');
Expand Down Expand Up @@ -26,7 +26,7 @@ function IsChm(){return (-1 !=(""+window.location.href).search(/\.chm::/i));}
if(IsChm()){
HHCtrlClose();
}else{
document.writeln('[<a href="index.html">–ÚŽŸ</a>]');
document.writeln('[<a href="index.html">目次</a>]');
}

function hideDiv (targetId)
Expand Down
4 changes: 2 additions & 2 deletions help/sakura/res/item.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// HHCtrls
// HHCtrls
function HHCtrlClose()
{
document.writeln('<OBJECT id="aaHHCtlCloseWin" type="application/x-oleobject"');
Expand Down Expand Up @@ -26,6 +26,6 @@ function IsChm(){return (-1 !=(""+window.location.href).search(/\.chm::/i));}
if(IsChm()){
HHCtrlClose();
}else{
document.writeln('[<a href="HLP000001.html">–ÚŽŸ</a>]');
document.writeln('[<a href="HLP000001.html">目次</a>]');
}

0 comments on commit d266e8c

Please sign in to comment.