diff options
author | slashinfty <matt.braddock@gmail.com> | 2020-08-07 20:48:15 -0400 |
---|---|---|
committer | slashinfty <matt.braddock@gmail.com> | 2020-08-07 20:48:15 -0400 |
commit | 85d257a1ccdf98894127bcbfc973d912a5146506 (patch) | |
tree | 08650e401cb081e4e43ffadb88d36a12cec0e55a /index.html | |
parent | 2c0a0a13aeb2c00f7805e22175656b11845f9c1e (diff) |
removing jquery
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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> <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> |