aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/static/js/speedyplay.js
diff options
context:
space:
mode:
Diffstat (limited to 'youtube/static/js/speedyplay.js')
-rw-r--r--youtube/static/js/speedyplay.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/youtube/static/js/speedyplay.js b/youtube/static/js/speedyplay.js
deleted file mode 100644
index 58b5d33..0000000
--- a/youtube/static/js/speedyplay.js
+++ /dev/null
@@ -1,13 +0,0 @@
-(function main() {
- 'use strict';
- const video = document.getElementById('js-video-player');
- const speedInput = document.getElementById('speed-control');
- speedInput.addEventListener('keyup', (event) => {
- if (event.key === 'Enter') {
- let speed = parseFloat(speedInput.value);
- if(!isNaN(speed)){
- video.playbackRate = speed;
- }
- }
- });
-}());