MediaWiki:Common.js

From subvention Wiki
Revision as of 16:01, 25 May 2011 by DavidM (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
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';
      }
    }
}