Added support for download

This commit is contained in:
Lukáš Plevač 2023-10-10 21:27:50 +02:00
parent 4586a17d8d
commit 30c658baaa
2 changed files with 9 additions and 1 deletions

View File

@ -225,7 +225,7 @@
var url = el.getAttribute("value");
var name = el.innerHTML;
document.getElementById("artefact-title").innerHTML = name;
document.getElementById("artefact-title").innerHTML = name + " <a href='" + url + "' download><img class='icon' width='24' height='24' src='/static/icons/download.svg'></a>";
if (extension(name) == "png" || extension(name) == "jpg" ) {
getMeta(url, (err, img) => {

View File

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-download" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2" />
<path d="M7 11l5 5l5 -5" />
<path d="M12 4l0 12" />
</svg>

After

Width:  |  Height:  |  Size: 405 B