aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.js
diff options
context:
space:
mode:
authorslashinfty <matt.braddock@gmail.com> 2020-08-07 20:51:07 -0400
committerslashinfty <matt.braddock@gmail.com> 2020-08-07 20:51:07 -0400
commit4c82453082268b041d23639c974f0880639bb491 (patch)
tree82dd7ceb051e1fbacaffbd89bf1aceb80e0b337e /main.js
parent85d257a1ccdf98894127bcbfc973d912a5146506 (diff)
initially disable textarea
Diffstat (limited to 'main.js')
-rw-r--r--main.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.js b/main.js
index 97c111f..b7a078a 100644
--- a/main.js
+++ b/main.js
@@ -41,6 +41,7 @@ function compute() {
let modMessage = `Mod Message: Time starts at ${parseFloat(startFrame).toFixed(3)} and ends at ${parseFloat(endFrame).toFixed(3)} at ${frameRate} fps to get a final time of ${finalTime}.`;
let credits = `Retimed using [yt-frame-timer](https://mattbraddock.com/yt-frame-timer)`;
document.getElementById('time').value = finalTime;
+ document.getElementById('modMessage').disabled = false;
document.getElementById('modMessage').innerText = modMessage + ' ' + credits;
document.getElementById("modMessageButton").disabled = false;
}