Jump to content

User:Ieditrandomarticles/sidebar.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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
// taken from [[User:MathXplore/sidebar.js]]
(function() {
	
	$(document).ready(function() {
		mw.loader.using( ['mediawiki.util'], function() {
			// show shortcuts if not editing
			console.log("[SIDEBAR] Document is loaded");
			if (!mw.config.get('wgEditMessage')) {
				mw.util.addPortletLink("p-navigation", "https://simple.wikipedia.org/wiki/Category:Category_Needed", "Category Needed");
				console.log("[SIDEBAR] Appended 1 Item to Sidebar");
				return;
			}
		});
	});
}());