미디어위키:Guidedtour-tour-uacouncilnotice.js

카이스트 백과사전
디아블로 (토론 | 기여)님의 2020년 3월 10일 (화) 16:24 판 (Test Edit)
둘러보기로 가기 검색하러 가기

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 인터넷 익스플로러: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
  • 오페라: 메뉴 → 설정(맥의 경우 오페라 → 환경 설정)으로 이동한 다음 개인 정보 보호 및 보안 → 검색 데이터 지우기 → 캐시한 영상 및 파일을 누름.
// 전체학생대표자회의와 중앙운영위원회의 회의 공고 문서를 작성하기 위한 Guided Tour입니다.
// Ref: https://www.mediawiki.org/wiki/Extension:GuidedTour/Write_an_on-wiki_tour
( function ( window, document, $, mw, gt ) {
	var pageName = 'User:디아블로/연습장', tour;
	
	tour = new gt.TourBuilder({
		// Name of this tour
		name: 'uacouncilnotice'
	});
	
	tour.firstStep({
		name: 'intro',
		title: 'Step 1',
		description: 'Description of uacouncilnotice Guided Gour',
		overlay : true
	})
	.next('secondstep');
	
	tour.step({
		name: 'secondstep',
		title: 'Step 2',
		description: 'Description of step 2',
		attachTo: '#n-portal a',
		position: 'right',
	})
	.next('thirdstep')
	.back('intro');
	
	tour.step({
		name: 'thirdstep',
		title: 'Step 3',
		description: pageName,
		overlay: true,
		onShow: gt.getPageAsDescription,
		buttons: [{
			action: 'wikiLink',
			page: pageName,
			name: 'Go to description page',
			type: 'progressive'
		}, {
			action: 'end'
		}]
	})
	.back('intro');
} ( window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) );