"미디어위키:Common.js"의 두 판 사이의 차이

디지털 트윈국토 표준 활용 가이드
태그: 대체됨
3번째 줄: 3번째 줄:
$( function () {
$( function () {
});
});
$.when( mw.loader.using('mediawiki.util'), $.ready ).then(
function() {
    mw.util.addPortletLink( 'portletId', 'href', 'text', 'id', 'tooltip', 'accesskey', 'nextnode');
}
);

2022년 4월 6일 (수) 18:01 판

/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */

$( function () {
});

$.when( mw.loader.using('mediawiki.util'), $.ready ).then(
	function() { 
    	mw.util.addPortletLink( 'portletId', 'href', 'text', 'id', 'tooltip', 'accesskey', 'nextnode'); 
	}
);