Jump to content

MediaWiki:Common.js: Difference between revisions

The comprehensive free global encyclopedia of CEOs, corporate leadership, and business excellence
Add footer disclaimer via JavaScript injection
Remove bold formatting from disclaimer text
Line 9: Line 9:
         if (footerHTML && footerHTML.indexOf('CEO.wiki is operated as an independent') === -1) {
         if (footerHTML && footerHTML.indexOf('CEO.wiki is operated as an independent') === -1) {
             // Disclaimer not found, add it
             // Disclaimer not found, add it
             $footer.append(' <strong>CEO.wiki is operated as an independent collaborative encyclopedia project and is not affiliated with Wikipedia or the Wikimedia Foundation.</strong>');
             $footer.append(' CEO.wiki is operated as an independent collaborative encyclopedia project and is not affiliated with Wikipedia or the Wikimedia Foundation.');
         }
         }
     } else {
     } else {
         // Footer doesn't exist, create it
         // Footer doesn't exist, create it
         var disclaimer = '<div id="footer-info-copyright" style="text-align: center; padding: 20px; background: #f8f9fa; border-top: 1px solid #ddd; margin-top: 40px; font-size: 0.85em; line-height: 1.6;">Text is available under the <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank" rel="nofollow">Creative Commons Attribution-ShareAlike 4.0 License</a>; additional terms may apply. By using this site, you agree to the <a href="/wiki/CEO.wiki:Terms_of_Use">Terms of Use</a>, <a href="/wiki/CEO.wiki:Privacy_Policy">Privacy Policy</a>, and all <a href="/wiki/CEO.wiki:General_disclaimer">disclaimers</a>. <strong>CEO.wiki is operated as an independent collaborative encyclopedia project and is not affiliated with Wikipedia or the Wikimedia Foundation.</strong> See our <a href="/wiki/CEO.wiki:Takedown_Request_Policy">Takedown Request Policy</a> for content concerns.</div>';
         var disclaimer = '<div id="footer-info-copyright" style="text-align: center; padding: 20px; background: #f8f9fa; border-top: 1px solid #ddd; margin-top: 40px; font-size: 0.85em; line-height: 1.6;">Text is available under the <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank" rel="nofollow">Creative Commons Attribution-ShareAlike 4.0 License</a>; additional terms may apply. By using this site, you agree to the <a href="/wiki/CEO.wiki:Terms_of_Use">Terms of Use</a>, <a href="/wiki/CEO.wiki:Privacy_Policy">Privacy Policy</a>, and all <a href="/wiki/CEO.wiki:General_disclaimer">disclaimers</a>. CEO.wiki is operated as an independent collaborative encyclopedia project and is not affiliated with Wikipedia or the Wikimedia Foundation. See our <a href="/wiki/CEO.wiki:Takedown_Request_Policy">Takedown Request Policy</a> for content concerns.</div>';
         $('.mw-footer-container, .mw-page-container, #footer, body').append(disclaimer);
         $('.mw-footer-container, .mw-page-container, #footer, body').append(disclaimer);
     }
     }
});
});

Revision as of 09:43, 21 October 2025

/* Add Wikipedia disclaimer to footer */
$(document).ready(function() {
    // Find the footer copyright element
    var $footer = $('#footer-info-copyright');
    
    if ($footer.length) {
        // Footer exists, ensure disclaimer is visible
        var footerHTML = $footer.html();
        if (footerHTML && footerHTML.indexOf('CEO.wiki is operated as an independent') === -1) {
            // Disclaimer not found, add it
            $footer.append(' CEO.wiki is operated as an independent collaborative encyclopedia project and is not affiliated with Wikipedia or the Wikimedia Foundation.');
        }
    } else {
        // Footer doesn't exist, create it
        var disclaimer = '<div id="footer-info-copyright" style="text-align: center; padding: 20px; background: #f8f9fa; border-top: 1px solid #ddd; margin-top: 40px; font-size: 0.85em; line-height: 1.6;">Text is available under the <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank" rel="nofollow">Creative Commons Attribution-ShareAlike 4.0 License</a>; additional terms may apply. By using this site, you agree to the <a href="/wiki/CEO.wiki:Terms_of_Use">Terms of Use</a>, <a href="/wiki/CEO.wiki:Privacy_Policy">Privacy Policy</a>, and all <a href="/wiki/CEO.wiki:General_disclaimer">disclaimers</a>. CEO.wiki is operated as an independent collaborative encyclopedia project and is not affiliated with Wikipedia or the Wikimedia Foundation. See our <a href="/wiki/CEO.wiki:Takedown_Request_Policy">Takedown Request Policy</a> for content concerns.</div>';
        $('.mw-footer-container, .mw-page-container, #footer, body').append(disclaimer);
    }
});