MediaWiki:Gadget-userrights.js

From Simple English Wikipedia, the free encyclopedia

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.
// Add "User rights" link
jQuery(document).ready( function( $ ) {
	if ( $.inArray(mw.config.get('wgNamespaceNumber'), [2 , 3 ]) !== -1) {
		mw.util.addPortletLink( 'p-cactions', mw.config.get('wgScript') + '?title=Special:UserRights&user=' + encodeURIComponent( mw.config.get('wgTitle').split('/')[0] ),
				'User rights', 'ca-rights', 'Change user rights');
	}
} );