MediaWiki:Guidedtour-tour-returnWizard.js

Today we want to delve deeper into the topic of MediaWiki:Guidedtour-tour-returnWizard.js, a topic that has gained relevance in recent years and that undoubtedly generates great interest among the population. MediaWiki:Guidedtour-tour-returnWizard.js is a topic that covers multiple aspects and has been the subject of constant debate and analysis. In this article, we will explore different perspectives and approaches related to MediaWiki:Guidedtour-tour-returnWizard.js, with the aim of providing a comprehensive view on this topic. From its origins to its impact today, MediaWiki:Guidedtour-tour-returnWizard.js has captured the attention of academics, experts and the general public, being the object of study and interest in various areas. Without a doubt, MediaWiki:Guidedtour-tour-returnWizard.js has become a relevant topic in contemporary society, which is why it is essential to deepen its understanding and scope.
( function ( window, document, $, mw, gt ) {
	tour = new gt.TourBuilder( {
		/*
		 * This is the name of the tour.  It must be lowercase, without any hyphen (-) or
		 * period (.) characters.
		 *
		 * The page where you save an on-wiki tour must be named
		 * MediaWiki:Guidedtour-tour-{name}.js , in this example MediaWiki:Guidedtour-tour-mytest.js
		 */
		name: 'returnWizard'
	} );

	// Information defining each tour step

	// This tour shows a central overlay at the start of the tour.
	// Guiders appear in the center if another position is not specified.
	// To specify the first step of the tour, use .firstStep instead of .step
	tour.firstStep( {
		name: 'provideBack',
		title: 'Continue with the Article Wizard',
		attachTo: '#mw-indicator-mw-helplink',
		description: 'Not found an article? Click "Return" below to head back to the Article Wizard. <br> Once you have done that, or if you wish to dismiss this message, click the tick icon',
		overlay: false,
		position: 'right',
		
		buttons: [ {
			action: 'wikiLink',
			page: 'Wikipedia:Article_wizard/Subject',
			name: 'Return'
		}, {
			// This makes the okay button on this step end the tour.
			action: 'end'
		} ]
		
	} );

// The following should be the last line of your tour.
} ( window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) );