미디어위키:Gadget-OWLink.js: 두 판 사이의 차이

리버티게임, 모두가 만들어가는 자유로운 게임
imported>Senouis
(본인 요청에 따른 변경)
imported>Senouis
잔글 (Senouis님이 미디어위키:Gadget-SCGI.js 문서를 넘겨주기를 만들지 않고 미디어위키:Gadget-OWLink.js 문서로 이동했습니다: SCGI->OWLink)
(차이 없음)

2020년 12월 31일 (목) 00:33 판

/** [[틀:일방통행링크]]에서 사용하는 링크 리다이렉트 함수
 * class="OWLink-container"
 * 작성자: [[사용자:hsl0|hsl0]]
**/
$(function useOWLink() {
	$('.OWLink-container a').each(function() {
		var href = new URL(this.href);
		
		if(location.host === href.host) $(this).click(function(event) {
			event.preventDefault();
			location.replace(event.currentTarget.href);
		}).addClass('OWLink');
	});
});