"미디어위키:Guidedtour-tour-edituacouncilnotice.js"의 두 판 사이의 차이
둘러보기로 가기
검색하러 가기
잔글 |
잔글 |
||
24번째 줄: | 24번째 줄: | ||
position: 'bottom' | position: 'bottom' | ||
}) | }) | ||
− | . | + | .transition( function () { |
+ | if (gt.isEditing()) { | ||
+ | return 'edit1'; | ||
+ | } | ||
+ | }) | ||
.back('intro'); | .back('intro'); | ||
+ | tour.step({ | ||
+ | name: 'edit1', | ||
+ | title: '회의 공고 문서 편집하기', | ||
+ | description: '미디어위키:Guidedtour-tour-edituacouncilnotice.js/creation2', | ||
+ | onShow: gt.getPageAsDescription, | ||
+ | attachTo: '#bodyContent > div.oo-ui-widget.ve-ui-surface.ve-ui-surface-visual.ve-ui-mwSurface.ve-init-mw-target-surface.ve-ui-surface-dir-ltr > div.ve-ui-overlay-local.ve-ui-overlay > div:nth-child(2) > div.ve-ce-surface-highlights > div.ve-ce-surface-highlights-focused > div > div', | ||
+ | position: 'left' | ||
+ | }) | ||
+ | .next('edit2'); | ||
} ( window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) ); | } ( window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) ); |
2020년 3월 11일 (수) 11:41 판
// 전체학생대표자회의와 중앙운영위원회의 회의 공고 문서를 작성하기 위한 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'
})
.transition( function () {
if (gt.isEditing()) {
return 'edit1';
}
})
.back('intro');
tour.step({
name: 'edit1',
title: '회의 공고 문서 편집하기',
description: '미디어위키:Guidedtour-tour-edituacouncilnotice.js/creation2',
onShow: gt.getPageAsDescription,
attachTo: '#bodyContent > div.oo-ui-widget.ve-ui-surface.ve-ui-surface-visual.ve-ui-mwSurface.ve-init-mw-target-surface.ve-ui-surface-dir-ltr > div.ve-ui-overlay-local.ve-ui-overlay > div:nth-child(2) > div.ve-ce-surface-highlights > div.ve-ce-surface-highlights-focused > div > div',
position: 'left'
})
.next('edit2');
} ( window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) );