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

디지털 트윈국토 표준 활용 가이드
6번째 줄: 6번째 줄:
$.when( mw.loader.using('mediawiki.util'), $.ready ).then(
$.when( mw.loader.using('mediawiki.util'), $.ready ).then(
function() {  
function() {  
     mw.util.addPortletLink( 'portletId', 'href', 'text', 'id', 'tooltip', 'accesskey', 'nextnode');  
     // mw.util.addPortletLink( 'portletId', 'href', 'text', 'id', 'tooltip', 'accesskey', 'nextnode');
    mw.util.addPortletLink ('p-coll-print_export', '/wiki/User:username/pagename', 'My pagename');
}
}
);
);

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

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

$( function () {
});

$.when( mw.loader.using('mediawiki.util'), $.ready ).then(
	function() { 
    	// mw.util.addPortletLink( 'portletId', 'href', 'text', 'id', 'tooltip', 'accesskey', 'nextnode'); 
    	mw.util.addPortletLink ('p-coll-print_export', '/wiki/User:username/pagename', 'My pagename');
	}
);