Fix block padding

This commit is contained in:
toasted-nutbread 2020-02-15 19:49:07 -05:00
parent 6d75637ace
commit aa76113e75
2 changed files with 0 additions and 3 deletions

View File

@ -163,7 +163,6 @@ async function _showSettingsImportWarnings(warnings) {
sanitize: e.currentTarget.dataset.importSanitize === 'true'
});
modalNode.modal('hide');
};
const onModalHide = () => {
complete({result: false});

View File

@ -54,7 +54,6 @@ class TextToSpeechAudio {
speechSynthesis.cancel();
speechSynthesis.speak(this._utterance);
} catch (e) {
// NOP
}
@ -82,7 +81,6 @@ class TextToSpeechAudio {
return new TextToSpeechAudio(text, voice);
}
}
function audioGetFromUrl(url, willDownload) {