mirror of https://github.com/kc0bfv/ticky_tacky_dark.git

Karl
11.18.2022 f626fbd274d172fb7532bc52721d6be6123e7009
layouts/partials/head.html
@@ -55,9 +55,9 @@
<script>
    function randomImg(dest_elem, images) {
        let img_ind = Math.ceil(Math.random() * images.length) - 1;
        let sel_url = images[img_ind]
        let img = new Image();
        const img_ind = Math.ceil(Math.random() * images.length) - 1;
        const sel_url = images[img_ind]
        const img = new Image();
        img.onload = function() {
            function set_img() {
                const element = document.getElementById(dest_elem);