Files

7 lines
236 B
JavaScript
Raw Permalink Normal View History

2026-06-21 10:00:13 +08:00
document.addEventListener('DOMContentLoaded', () => {
if (!location.hostname.includes('fse-media.group')) {
const homeLink = document.getElementById('homeLink');
if (homeLink) homeLink.href = '/home.html';
}
});