MediaWiki:Gadget-mySandbox.js
From OdleWiki
Revision as of 21:01, 27 October 2013 by Kenneth John Odle (talk | contribs) (Created page with "* _____________________________________________________________________________ * | | * | ...")
Note: After saving, 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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
* _____________________________________________________________________________ * | | * | === WARNING: GLOBAL GADGET FILE === | * | Changes to this page affect many users. | * | Please discuss changes on the talk page or on [[WT:Gadget]] before editing. | * |_____________________________________________________________________________| */ /** * Add a "My sandbox" link to the personal portlet menu. * Dependencies: mediawiki.util, mediawiki.Title, mediawiki.Uri * * @source mediawiki.org/wiki/Snippets/MySandbox * @version 2 */ ( function ( mw, $ ) { $( document ).ready( function () { var conf, title, url; // Costomize/Translate this to your needs conf = { subpageName: 'sandbox', portletLabel: 'Sandbox', portletTooltip: 'Go to your sandbox', editintroPagename: 'Template:User_sandbox', preloadPagename: 'Template:User_sandbox/preload' }; // Don't alter the code below // Use Special:MyPage (as opposed to mw.user.getName()) so that it // works for logged-out users as well. title = new mw.Title( 'Special:MyPage/' + conf.subpageName ); url = new mw.Uri( title.getUrl() ); url.extend({ action: 'edit', redlink: 1, editintro: new mw.Title( conf.editintroPagename ), preload: new mw.Title( conf.preloadPagename ) }); mw.util.addPortletLink( 'p-personal', url, conf.portletLabel, 'pt-mysandbox', conf.portletTooltip, null, '#pt-preferences' ); }); }( mediaWiki, jQuery ) );