diff options
-rw-r--r-- | happy_hacking_vimperator.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/happy_hacking_vimperator.js b/happy_hacking_vimperator.js index d721295..3a6607d 100644 --- a/happy_hacking_vimperator.js +++ b/happy_hacking_vimperator.js @@ -3276,16 +3276,16 @@ let PLUGIN_INFO = xml` let sz = innerWidth / msg.length / 1.5; if (plugins.namakubi && typeof plugins.namakubi.talk == 'function') plugins.namakubi.talk(msg); - liberator.echo( + liberator.echo(xml` <div style="background: white; color: black;"> <table> <tr> - <td><img src={gunsou}/></td> - <td style={"font-size: " + sz + "px; white-space: nowrap;"}>{msg}</td> + <td><img src=${gunsou}/></td> + <td style=${"font-size: " + sz + "px; white-space: nowrap;"}>${msg}</td> </tr> </table> </div> - ); + `); } function kill (msg) { |