summaryrefslogtreecommitdiff
path: root/public/app/views/js/credits.php
blob: ca0f15c7a171cdf276c209833b745cbb6602d85f (plain)
1
2
3
4
5
6
7
8
9
10
<script>
// create image-credits div
let ic_div = document.createElement('div');
ic_div.innerHTML = '<a href="<?=THEME['url']?>" target="_blank" title="Attribution for the lovely background image"><?=THEME['label']?></a>';
ic_div.className = 'image-credits';

// append image-credits div to body
document.querySelector('body').appendChild(ic_div);     

</script>