7 lines
236 B
JavaScript
7 lines
236 B
JavaScript
document.addEventListener('DOMContentLoaded', () => {
|
|
if (!location.hostname.includes('fse-media.group')) {
|
|
const homeLink = document.getElementById('homeLink');
|
|
if (homeLink) homeLink.href = '/home.html';
|
|
}
|
|
});
|