User:Minorax/simplewiktTab.js

Hello, you have come here looking for the meaning of the word User:Minorax/simplewiktTab.js. In DICTIOUS you will not only get to know all the dictionary meanings for the word User:Minorax/simplewiktTab.js, but we will also tell you about its etymology, its characteristics and you will know how to say User:Minorax/simplewiktTab.js in singular and plural. Everything you need to know about the word User:Minorax/simplewiktTab.js you have here. The definition of the word User:Minorax/simplewiktTab.js will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofUser:Minorax/simplewiktTab.js, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
// Derived from ] and is in turn derived from ] 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 Wiktionary
var entabURL = '//' + 'simple.wiktionary.orghttps://dictious.com/en/' + mw.config.get('wgPageName');
 
// Set Simple Wiktionary tab URL, text, and title 
entabTab.find('a').attr('href', entabURL).empty().text('SimpleWikt').attr('title', "Navigate to this page on Simple Wiktionary");
 
// Get sandbox existence status via Ajax
new mw.ForeignApi( 'https://simple.wiktionary.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 ) == '-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