Hi

I write julius file like this.

(snip)
      var fs = $('<fieldset><legend>Recent Changes</legend></fieldset>'),
          ul = $('<ul/>');
      $('#recent-changes').append(fs.append(ul));
(snip)

This works good.
But,...

(snip)
      var fs = $('<fieldset><legend>最近の更新</legend></fieldset>'), // Japanese UTF-8
          ul = $('<ul/>');
      $('#recent-changes').append(fs.append(ul));
(snip)

This script(with UTF-8) transform legend text to unreadable string.

Then, I try to insert "debugger;" statement in order to disable to hjsmin,
This try is success and make readable.

Could you confirm this?