From 91740943b58b1a3409210258301642e0714f937e Mon Sep 17 00:00:00 2001 From: n3tc0m <41996771+n3tc0m@users.noreply.github.com> Date: Thu, 2 Aug 2018 12:20:51 +0300 Subject: [PATCH] Update txlogger.js Decoded output log now have copytoclipboard feature --- src/app/execution/txLogger.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/execution/txLogger.js b/src/app/execution/txLogger.js index dc9d15f83b..5a2faf8611 100644 --- a/src/app/execution/txLogger.js +++ b/src/app/execution/txLogger.js @@ -536,7 +536,9 @@ function createTable (opts) { var outputDecoded = yo` decoded output - ${opts['decoded output']} + ${opts['decoded output']} + ${copyToClipboard(opts['decoded output'])} + ` table.appendChild(outputDecoded) }