Jump to content

User:Xaosflux/common2.js

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Emir of Wikipedia (talk | contribs) at 21:07, 3 July 2019 (Reverted edits by Emir of Wikipedia (talk) to last version by Xaosflux). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

/* Show contributions */

$(document).ready( function () { mw.loader.using( 'mediawiki.user', function() { ( new mw.Api() ).get( { action: 'query', meta: 'userinfo', uiprop: 'editcount' } ).done( function( result ) { document.getElementById( 'pt-mycontris' ).append( ' (' + result.query.userinfo.editcount + ')' ); } ); } ); } );