diff --git a/src/public/app.js b/src/public/app.js index ac66b6a..f10192f 100644 --- a/src/public/app.js +++ b/src/public/app.js @@ -300,6 +300,11 @@ (resultTgz.length / 1024).toFixed(0) + ' KB.'; writeSuccess.hidden = true; + // Copy log to done step + const doneLog = document.getElementById('done-log'); + doneLog.textContent = buildLog.textContent; + doneLog.scrollTop = doneLog.scrollHeight; + // In manual mode, hide the "Write to Kobo" button btnWrite.hidden = manualMode; diff --git a/src/public/index.html b/src/public/index.html index 40356bd..06cc5d4 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -105,6 +105,7 @@