Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ipfs.js « js « static - github.com/dldx/hpstr-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45d1947b4503355239f9c0c39979502b5fd4ad2b (plain)
1
2
3
4
5
6
7
8
function use_ipfs(image) {
    if (image.naturalWidth == 0 && image.src.search("/ipfs/") != -1) {
        image.src = image.src.split('#')[1];
    }
}

let image = document.getElementsByClassName("entry-image")[0].getElementsByTagName('img')[0];
window.onload(use_ipfs(image));