From c550b8f4cc522063223884521785df5664f75666 Mon Sep 17 00:00:00 2001 From: anekos Date: Mon, 13 Jan 2014 01:06:14 +0900 Subject: Heal ED --- erection.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'erection.js') diff --git a/erection.js b/erection.js index b78182c..21bc908 100644 --- a/erection.js +++ b/erection.js @@ -217,7 +217,7 @@ let INFO = xml` ['c[opy]'], 'Copy text', makeErectionCommand(function (e) { - util.copyToClipboard(String(`{e.text} - {e.by} {e.from} {e.imageURL}`)); + util.copyToClipboard(String(`${e.text} - ${e.by} ${e.from} ${e.imageURL}`)); }), subOption ), @@ -227,9 +227,9 @@ let INFO = xml` makeErectionCommand(function (e) { liberator.echo(xml`
-

{e.text}

- - {e.by} {e.from} +

${e.text}

+ + ${e.by} ${e.from}
`); }), @@ -239,7 +239,7 @@ let INFO = xml` ['e[xcommand]'], 'Open command line with select erection', makeErectionCommand(function (e, args) { - let cmdArgs = String(`{e.text} - {e.by} {e.from} {e.imageURL}`); + let cmdArgs = String(`${e.text} - ${e.by} ${e.from} ${e.imageURL}`); setTimeout(function () commandline.open('', args[0] + ' ' + cmdArgs, modes.EX), 1); }), { -- cgit v1.2.3