frontend: more self-closing/invalid closing tag cleanup
This commit is contained in:
parent
4680582ce9
commit
c32704dfe3
2 changed files with 5 additions and 5 deletions
|
@ -235,7 +235,7 @@ function popup(type, action, text) {
|
|||
`<a class="picker-image-container" ${
|
||||
isIOS ? `onClick="share('${text.arr[i]["url"]}')"` : `href="${text.arr[i]["url"]}" target="_blank"`
|
||||
}>` +
|
||||
`<img class="picker-image" src="${text.arr[i]["url"]}" onerror="this.parentNode.style.display='none'"></img>` +
|
||||
`<img class="picker-image" src="${text.arr[i]["url"]}" onerror="this.parentNode.style.display='none'">` +
|
||||
`</a>`
|
||||
}
|
||||
break;
|
||||
|
@ -252,7 +252,7 @@ function popup(type, action, text) {
|
|||
}>` +
|
||||
`<div class="picker-element-name">${text.arr[i].type}</div>` +
|
||||
`<div class="imageBlock"></div>` +
|
||||
`<img class="picker-image" src="${text.arr[i]["thumb"]}" onerror="this.style.display='none'"></img>` +
|
||||
`<img class="picker-image" src="${text.arr[i]["thumb"]}" onerror="this.style.display='none'">` +
|
||||
`</a>`
|
||||
}
|
||||
eid("picker-download").classList.remove("visible");
|
||||
|
@ -601,9 +601,9 @@ window.onload = () => {
|
|||
if (setUn !== null) {
|
||||
if (setUn) {
|
||||
sSet("migrated", "true")
|
||||
eid("desc-migration").innerHTML += `<br/><br/>${loc.DataTransferSuccess}`
|
||||
eid("desc-migration").innerHTML += `<br><br>${loc.DataTransferSuccess}`
|
||||
} else {
|
||||
eid("desc-migration").innerHTML += `<br/><br/>${loc.DataTransferError}`
|
||||
eid("desc-migration").innerHTML += `<br><br>${loc.DataTransferError}`
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ export async function loadLoc() {
|
|||
|
||||
export function replaceBase(s) {
|
||||
return s
|
||||
.replace(/\n/g, '<br/>')
|
||||
.replace(/\n/g, '<br>')
|
||||
.replace(/{saveToGalleryShortcut}/g, links.saveToGalleryShortcut)
|
||||
.replace(/{repo}/g, repo)
|
||||
.replace(/{statusPage}/g, links.statusPage)
|
||||
|
|
Loading…
Reference in a new issue