Send the correct raw TTS json when the TTS output button is pressed
This commit is contained in:
parent
4824d2b9a3
commit
a7ecfc5d1e
@ -42,7 +42,7 @@ window.addEventListener("load", () => {
|
||||
// download input JSON
|
||||
document.querySelector('#outputDownload').addEventListener(
|
||||
'click',
|
||||
() => downloadFile('deck.json',
|
||||
() => downloadFile('deck.tts.json',
|
||||
deckName + '.json'));
|
||||
|
||||
|
||||
|
@ -89,6 +89,9 @@ const server = http.createServer((req, res) => {
|
||||
case 'deck.json':
|
||||
sendFileJSON(res, deckName);
|
||||
break;
|
||||
case 'deck.tts.json':
|
||||
sendFile(res, `decks/${deckName}.json`, 'application/json');
|
||||
break;
|
||||
case 'deck.input.json':
|
||||
sendFile(res, `decks/${deckName}.input.json`, 'application/json');
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user