User:Minorax/simplewp.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Minorax/simplewp. |
// Derived from [[:w:simple:User:Operator873/enWPTab.js]] and is in turn derived from [[:w:simple:User:Djsasso/enWPTab.js]] with little adjustments here and there
// Define "simpletabMainTab" variable before cloning it.
var entabMainTab = $('#left-navigation li:not(.selected)').slice(0,1).css('opacity','0.9');
// Clone main page tab
var entabTab = entabMainTab.clone(true).attr('id', entabMainTab.attr('id')+'-').css('opacity','0.9').removeClass('new');
// Construct URL for Simple English Wikipedia
var entabURL = '//' + 'simple.wikipedia.org/wiki/' + mw.config.get('wgPageName');
// Set Simple English Wikipedia tab URL, text, and title
entabTab.find('a').attr('href', entabURL).empty().text('SimpleWiki').attr('title', "Navigate to this page on Simple English Wikipedia");
// Get sandbox existence status via Ajax
new mw.ForeignApi( 'https://simple.wikipedia.org/w/api.php' ).get( {
action: 'query',
titles: mw.config.get( 'wgPageName' )
} ).done( function ( ret ) {
// Ajax function on data return: If 'missing' field is defined, page is missing, so add 'new' class to tab, which turns it red
if (Object.keys( ret.query.pages )[0] == '-1') entabTab.addClass( 'new' );
} );
entabTab.insertAfter($('#left-navigation li').slice(0,1));
// ** Making tab red still doesn't work for some reason, haven't figured that out yet,
// ** but the ajax url is correct as you can see if you navigate to it manually:
// ** http://en.wikipedia.org/w/api.php?action=query&titles=monkey&format=xml