aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.js
diff options
context:
space:
mode:
authorMango0x45 <thomasvoss@live.com> 2021-03-17 15:50:30 +0100
committerMango0x45 <thomasvoss@live.com> 2021-03-17 15:50:30 +0100
commit971d279043e45c555d36502ae2bbaed2b81c2806 (patch)
tree1c4618f6d395bb3dadc7cf6483c7002dc13ba321 /main.js
parentd5c9ebfe4e548d2aa7146045a9bc38d115a98a1d (diff)
Buttons are bloat
Diffstat (limited to 'main.js')
-rw-r--r--main.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/main.js b/main.js
index dc7ca6d..da3d68f 100644
--- a/main.js
+++ b/main.js
@@ -71,7 +71,13 @@ function check_fps(event)
/* Get current frame from input field (either start time or end time) */
function parse_time(event)
{
- let inptext_frame = (JSON.parse(event.target.value)).cmt;
+ try {
+ inptext_frame = (JSON.parse(event.target.value)).cmt;
+ } catch {
+ document.getElementById(event.target.id).value = "";
+ return;
+ }
+
if (inptext_frame !== undefined) {
const fps = parseInt(
document.getElementById("framerate").value);
@@ -79,4 +85,8 @@ function parse_time(event)
const fframe = frame_from_obj(inptext_frame, fps);
document.getElementById(event.target.id).value = `${fframe}`;
}
+
+ if (document.getElementById("startobj").value
+ && document.getElementById("endobj").value)
+ compute();
}