MediaWiki:Guidedtour-tour-wwiiarchtour.js

From WWII Archives

Revision as of 12:27, 8 February 2024 by Paul Sidle (talk | contribs) (Created page with "// HTML and CSS pokey demonstration. // // Note well that you should run this tour on an editable page with at least // one section. ( function ( gt ) { gt.defineTour( { name: 'wwiiarchtour', steps: [ { title: 'Up', description: '', attachTo: '#ca-edit', position: 'bottom', buttons: [ { action: 'next' } ] }, { title: 'Right', description: '', attachTo: '#ca-edit', position: 'left', buttons: [ { action: 'next' } ] }, {...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
// HTML and CSS pokey demonstration.
//
// Note well that you should run this tour on an editable page with at least
// one section.
( function ( gt ) {

	gt.defineTour( {
		name: 'wwiiarchtour',
		steps: [ {
			title: 'Up',
			description: '',
			attachTo: '#ca-edit',
			position: 'bottom',
			buttons: [ {
				action: 'next'
			} ]
		}, {
			title: 'Right',
			description: '',
			attachTo: '#ca-edit',
			position: 'left',
			buttons: [ {
				action: 'next'
			} ]
		}, {
			title: 'Down',
			description: '',
			attachTo: '.mw-editsection',
			position: 'top',
			buttons: [ {
				action: 'next'
			} ]
		}, {
			title: 'Left',
			description: '',
			attachTo: '#n-mainpage-description',
			position: 'right'
		} ]
	} );

}( mw.guidedTour ) );