Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4112973858593958"
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4112973858593958"
     crossorigin="anonymous"></script>
     crossorigin="anonymous"></script>
Line 10: Line 11:
     document.head.appendChild(script);
     document.head.appendChild(script);
});
});
</head>

Revision as of 09:47, 5 January 2025

/* Any JavaScript here will be loaded for all users on every page load. */
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4112973858593958"
     crossorigin="anonymous"></script>

mw.loader.using('mediawiki.util').then(function () {
    var script = document.createElement('script');
    script.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4112973858593958";
    script.async = true;
    script.crossOrigin = "anonymous";
    document.head.appendChild(script);
});
</head>