Emoji lingue, fix pagine, favicon

This commit is contained in:
2024-08-27 22:55:45 +02:00
parent 29b3c1846b
commit 725d75e269
12 changed files with 97 additions and 91 deletions

View File

@ -0,0 +1,15 @@
(function(){
if (location.protocol !== 'file:') {
return;
}
window.addEventListener('load', (function(){
Array.from(document.querySelectorAll('a[href]')).forEach(function(linkEl){
if (linkEl.href.startsWith('file://') && linkEl.href.endsWith('/')) {
linkEl.href += 'index.html';
}
});
}));
})();