mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-17 22:00:00 +00:00
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" ${
|
`<a class="picker-image-container" ${
|
||||||
isIOS ? `onClick="share('${text.arr[i]["url"]}')"` : `href="${text.arr[i]["url"]}" target="_blank"`
|
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>`
|
`</a>`
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -252,7 +252,7 @@ function popup(type, action, text) {
|
||||||
}>` +
|
}>` +
|
||||||
`<div class="picker-element-name">${text.arr[i].type}</div>` +
|
`<div class="picker-element-name">${text.arr[i].type}</div>` +
|
||||||
`<div class="imageBlock"></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>`
|
`</a>`
|
||||||
}
|
}
|
||||||
eid("picker-download").classList.remove("visible");
|
eid("picker-download").classList.remove("visible");
|
||||||
|
@ -601,9 +601,9 @@ window.onload = () => {
|
||||||
if (setUn !== null) {
|
if (setUn !== null) {
|
||||||
if (setUn) {
|
if (setUn) {
|
||||||
sSet("migrated", "true")
|
sSet("migrated", "true")
|
||||||
eid("desc-migration").innerHTML += `<br/><br/>${loc.DataTransferSuccess}`
|
eid("desc-migration").innerHTML += `<br><br>${loc.DataTransferSuccess}`
|
||||||
} else {
|
} 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) {
|
export function replaceBase(s) {
|
||||||
return s
|
return s
|
||||||
.replace(/\n/g, '<br/>')
|
.replace(/\n/g, '<br>')
|
||||||
.replace(/{saveToGalleryShortcut}/g, links.saveToGalleryShortcut)
|
.replace(/{saveToGalleryShortcut}/g, links.saveToGalleryShortcut)
|
||||||
.replace(/{repo}/g, repo)
|
.replace(/{repo}/g, repo)
|
||||||
.replace(/{statusPage}/g, links.statusPage)
|
.replace(/{statusPage}/g, links.statusPage)
|
||||||
|
|
Loading…
Reference in a new issue