diff options
author | Roland Reichwein <mail@reichwein.it> | 2022-11-05 15:12:14 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2022-11-05 15:12:14 +0100 |
commit | 40ecc6cf11a0fbfaa5a7fb65cf93ecf3edf8dc8e (patch) | |
tree | 895551a143960373776624a6a94dbeddf111682f /html | |
parent | 54539cc210afcda25f6da12ad08c2b5fa8bd5be2 (diff) |
Fix startup from youtube-dl leftover
Diffstat (limited to 'html')
-rw-r--r-- | html/index.html | 4 | ||||
-rw-r--r-- | html/whiteboard.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/html/index.html b/html/index.html index f97b295..3b23e90 100644 --- a/html/index.html +++ b/html/index.html @@ -6,8 +6,8 @@ <meta name="keywords" content="Reichwein, DownTube, YouTube, Download MP3"> <title>DownTube</title> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/> - <link rel="stylesheet" type="text/css" href="downtube.css"/> - <script src="downtube.js"></script> + <link rel="stylesheet" type="text/css" href="whiteboard.css"/> + <script src="whiteboard.js"></script> </head> <body onload="init();"> <div class="page"> diff --git a/html/whiteboard.js b/html/whiteboard.js index f79443e..dd81ff0 100644 --- a/html/whiteboard.js +++ b/html/whiteboard.js @@ -54,7 +54,7 @@ function on_start() { formatElement.appendChild(document.createTextNode(document.getElementById("mp3").checked ? "mp3" : "mp4")); requestElement.appendChild(formatElement); - xhr.open("POST", "downtube.fcgi", true); + xhr.open("POST", "whiteboard.fcgi", true); xhr.setRequestHeader("Content-type", "text/xml"); xhr.responseType = 'text'; xhr.send(xmlDocument); @@ -106,7 +106,7 @@ function get_file(filename) { formatElement.appendChild(document.createTextNode(document.getElementById("mp3").checked ? "mp3" : "mp4")); requestElement.appendChild(formatElement); - xhr.open("POST", "downtube.fcgi", true); + xhr.open("POST", "whiteboard.fcgi", true); xhr.setRequestHeader("Content-type", "text/xml"); xhr.responseType = 'blob'; xhr.send(xmlDocument); |