MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
(Created page with "var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-19605545-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/jav...") |
(No difference)
|
Revision as of 16:01, 25 May 2011
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19605545-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : ' http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
onload=function(){
if (!wgUserName) {
showLogin('needlogin');
showLogin('loggedin');
}
function showLogin(lclass) {
links = document.getElementsByClassName(lclass);
for (var i = 0; (element = links[i]) != null; i++) {
element.style.display = 'none';
}
links = document.getElementsByClassName("do"+lclass);
for (var i = 0; (element = links[i]) != null; i++) {
element.style.display = 'inline';
}
}
}