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

WONGO
둘러보기로 이동 검색으로 이동
(새 문서: mw.hook('wikipage.content').add(function($content) { $content.find('a.new-window').on('click', function(event) { event.preventDefault(); // 기본 링크 동작 방지 // 새 창 설정 const popupWidth = 800; const popupHeight = 600; const left = (screen.width / 2) - (popupWidth / 2); const top = (screen.height / 2) - (popupHeight / 2); // 새 창 열기 window.open( this.href, // 링크 URL...)
 
(문서를 비움)
태그: 비우기
 
1번째 줄: 1번째 줄:
mw.hook('wikipage.content').add(function($content) {
    $content.find('a.new-window').on('click', function(event) {
        event.preventDefault(); // 기본 링크 동작 방지


        // 새 창 설정
        const popupWidth = 800;
        const popupHeight = 600;
        const left = (screen.width / 2) - (popupWidth / 2);
        const top = (screen.height / 2) - (popupHeight / 2);
        // 새 창 열기
        window.open(
            this.href, // 링크 URL
            "_blank", // 새 창에서 열기
            `width=${popupWidth},height=${popupHeight},top=${top},left=${left},resizable=yes,scrollbars=yes`
        );
    });
});

2025년 1월 12일 (일) 10:59 기준 최신판