mirror of
https://gitlab.com/octtspacc/sitoctt
synced 2025-02-16 19:40:54 +01:00
16 lines
309 B
JavaScript
16 lines
309 B
JavaScript
|
(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';
|
||
|
}
|
||
|
});
|
||
|
}));
|
||
|
|
||
|
})();
|