KC's Test Wiki
Advertisement
/*
* Adds a link to your edit stats on the user drop-down menu on the top right
* Based on Ozuzanna's ContribsLink/code.js
*/
 
;(function($, mw) {
  var username = mw.config.get("wgUserName");
  $('#AccountNavigation > li > .subnav > li:first-child').after(
    $('<li/>').append('<a href="/wiki/Special:Editcount/'+username+'">My edit stats</a>')
  );
}) (this.jQuery, this.mediaWiki);
//
Advertisement