aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorslashinfty <matt.braddock@gmail.com> 2020-08-07 20:48:15 -0400
committerslashinfty <matt.braddock@gmail.com> 2020-08-07 20:48:15 -0400
commit85d257a1ccdf98894127bcbfc973d912a5146506 (patch)
tree08650e401cb081e4e43ffadb88d36a12cec0e55a
parent2c0a0a13aeb2c00f7805e22175656b11845f9c1e (diff)
removing jquery
-rw-r--r--index.html7
-rw-r--r--main.js20
2 files changed, 14 insertions, 13 deletions
diff --git a/index.html b/index.html
index bf39a95..8c59681 100644
--- a/index.html
+++ b/index.html
@@ -8,7 +8,6 @@
<title>YouTube Frame Timer</title>
<link rel="stylesheet" href="https://stackedit.io/style.css" />
<script src="main.js"></script>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body class="stackedit">
@@ -42,9 +41,9 @@
<h3 id="video-time">Video Time</h3>
<button id="computeButton" onclick="compute()">Compute time</button>&nbsp;<input type="text" id="time" readonly
size="20" />
- <p id="modMessage"></p>
- <button id="modMessageButton" disabled>Copy Mod Message to Clipboard</button>
+ <p><textarea id="modMessage" cols="40" rows="5"></textarea></p>
+ <button id="modMessageButton" onclick="copyModMessage()" disabled>Copy Mod Message to Clipboard</button>
</div>
</body>
-</html> \ No newline at end of file
+</html>
diff --git a/main.js b/main.js
index d3a3250..97c111f 100644
--- a/main.js
+++ b/main.js
@@ -41,15 +41,17 @@ 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').innerHTML = modMessage + ' ' + credits;
-
- // Allow user to copy mod message to clipboard
+ document.getElementById('modMessage').innerText = modMessage + ' ' + credits;
document.getElementById("modMessageButton").disabled = false;
- $("#modMessageButton").click(function () {
- navigator.clipboard.writeText(modMessage + ' ' + credits)
- .then(() => { alert(`The mod message has been copied to clipboard! Please paste it into the comment of the run you are verifying.`) })
- .catch((error) => { alert(`Failed to copy to clipboard! ${error}`) })
- });
+}
+
+function copyModMessage() {
+ // Allow user to copy mod message to clipboard
+ const textArea = document.getElementById('modMessage');
+ textArea.focus();
+ textArea.select();
+ document.execCommand('copy');
+ alert(`The mod message has been copied to clipboard! Please paste it into the comment of the run you are verifying.`);
}
const validateFPS = (event) => {
@@ -79,4 +81,4 @@ const parseForTime = (event) => {
// Update the DOM
document.getElementById(event.target.id).value = `${finalFrame}`;
}
-} \ No newline at end of file
+}