"미디어위키:Guidedtour-tour-edituacouncilnotice.js"의 두 판 사이의 차이
둘러보기로 가기
검색하러 가기
잔글 |
잔글 |
||
10번째 줄: | 10번째 줄: | ||
name: 'intro', | name: 'intro', | ||
title: '회의 공고 만들기', | title: '회의 공고 만들기', | ||
− | description: ' | + | description: '미디어위키:Guidedtour-tour-edituacouncilnotice.js/intro', |
− | overlay: true | + | overlay: true, |
+ | onShow: gt.getPageAsDescription | ||
}) | }) | ||
.next('creation1'); | .next('creation1'); | ||
18번째 줄: | 19번째 줄: | ||
name: 'creation1', | name: 'creation1', | ||
title: '회의 공고 문서 생성하기', | title: '회의 공고 문서 생성하기', | ||
− | description: ' | + | description: '미디어위키:Guidedtour-tour-edituacouncilnotice.js/creation1', |
+ | onShow: gt.getPageAsDescription, | ||
attachTo: '#mw-content-text > div.mw-parser-output > div.mw-inputbox-centered > form > input.mw-ui-input.mw-ui-input-inline.createboxInput', | attachTo: '#mw-content-text > div.mw-parser-output > div.mw-inputbox-centered > form > input.mw-ui-input.mw-ui-input-inline.createboxInput', | ||
position: 'bottom' | position: 'bottom' | ||
24번째 줄: | 26번째 줄: | ||
.next('creation2') | .next('creation2') | ||
.back('intro'); | .back('intro'); | ||
+ | |||
} ( window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) ); | } ( window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) ); |
2020년 3월 11일 (수) 11:32 판
// 전체학생대표자회의와 중앙운영위원회의 회의 공고 문서를 작성하기 위한 Guided Tour입니다.
// Ref: https://www.mediawiki.org/wiki/Extension:GuidedTour/Write_an_on-wiki_tour
( function ( window, document, $, mw, gt ) {
var tour = new gt.TourBuilder({
// name of this tour
name: 'edituacouncilnotice'
});
tour.firstStep({
name: 'intro',
title: '회의 공고 만들기',
description: '미디어위키:Guidedtour-tour-edituacouncilnotice.js/intro',
overlay: true,
onShow: gt.getPageAsDescription
})
.next('creation1');
tour.step({
name: 'creation1',
title: '회의 공고 문서 생성하기',
description: '미디어위키:Guidedtour-tour-edituacouncilnotice.js/creation1',
onShow: gt.getPageAsDescription,
attachTo: '#mw-content-text > div.mw-parser-output > div.mw-inputbox-centered > form > input.mw-ui-input.mw-ui-input-inline.createboxInput',
position: 'bottom'
})
.next('creation2')
.back('intro');
} ( window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) );