Difference between revisions of "MediaWiki:Common.js"
RealRecipes (talk | contribs) |
RealRecipes (talk | contribs) |
||
| 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. */ | ||
| − | + | alert("HELLO"); | |
<!-- End Google Analytics --> | <!-- End Google Analytics --> | ||
$wgExtensionFunctions[] = 'wfGoogleAnalytics'; | $wgExtensionFunctions[] = 'wfGoogleAnalytics'; | ||
Revision as of 11:58, 20 April 2018
/* Any JavaScript here will be loaded for all users on every page load. */
alert("HELLO");
<!-- End Google Analytics -->
$wgExtensionFunctions[] = 'wfGoogleAnalytics';
function wfGoogleAnalytics() {
global $wgOut;
$wgOut->addScript(
'<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src=\'" + gaJsHost + "google-analytics.com/ga.js\' type=\'text/javascript\'%3E%3C/script%3E"));
</script><script type="text/javascript">
var pageTracker = _gat._getTracker("UA-30695810-1");
pageTracker._trackPageview();</script>'
);
}