fix: font settings and quote widget

This commit is contained in:
David Ralph
2021-04-08 19:52:17 +01:00
parent 5cf9bd74f4
commit 2670c917b7
17 changed files with 26 additions and 24 deletions

View File

@@ -11,7 +11,7 @@ const toDataURL = async (url) => {
const response = await fetch(url);
const blob = await response.blob();
return URL.createObjectURL(blob);
}
};
const downloadImage = async (info) => {
const link = document.createElement('a');
@@ -21,7 +21,7 @@ const downloadImage = async (info) => {
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
};
export default function PhotoInformation(props) {
const language = window.language.widgets.background;