All Downloads are FREE. Search and download functionalities are using the official Maven repository.

welcome.about.js Maven / Gradle / Ivy

There is a newer version: 1.2.21
Show newest version
document.addEventListener('DOMContentLoaded', () => {
    const privacyLink = document.getElementById('privacy');
    const tosLink = document.getElementById('tos');
    if (privacyLink) {
        // Update the privacy link with the user's name and make it visible
        privacyLink.addEventListener('click', () => showModal('/privacy.html', false));
    }
    if (tosLink) {
        // Update the terms link with the user's name and make it visible
        tosLink.addEventListener('click', () => showModal('/tos.html', false));
    }
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy