diff options
author | Matt Braddock <matt.braddock@gmail.com> | 2021-01-30 12:49:54 -0500 |
---|---|---|
committer | Matt Braddock <matt.braddock@gmail.com> | 2021-01-30 12:49:54 -0500 |
commit | fdaad44bc731c638a3931d697363e281184e6e30 (patch) | |
tree | 87b9e0387a9a970806af5b128b448fd8d4df87cb | |
parent | f071e97df9837911ce888a71d9a7c72e4364e343 (diff) |
domain change
-rw-r--r-- | main.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |