aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatt Braddock <matt.braddock@gmail.com> 2021-01-30 12:49:54 -0500
committerMatt Braddock <matt.braddock@gmail.com> 2021-01-30 12:49:54 -0500
commitfdaad44bc731c638a3931d697363e281184e6e30 (patch)
tree87b9e0387a9a970806af5b128b448fd8d4df87cb
parentf071e97df9837911ce888a71d9a7c72e4364e343 (diff)
domain change
-rw-r--r--main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.js b/main.js
index b7a078a..1c33aba 100644
--- a/main.js
+++ b/main.js
@@ -39,7 +39,7 @@ function compute() {
// Show the time and mod message in the DOM
let finalTime = hours.toString() + 'h ' + minutes.toString() + 'm ' + seconds.toString() + 's ' + milliseconds.toString() + 'ms';
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)`;
+ let credits = `Retimed using [yt-frame-timer](https://slashinfty.github.io/yt-frame-timer)`;
document.getElementById('time').value = finalTime;
document.getElementById('modMessage').disabled = false;
document.getElementById('modMessage').innerText = modMessage + ' ' + credits;