미디어위키:Gadget-ShowJavascriptErrors.js

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다. 구글 크롬, 파이어폭스, 마이크로소프트 엣지, 사파리: ⇧ Shift 키를 누른 채 "새로 고침" 버튼을 클릭하십시오. 더 자세한 정보를 보려면 위키백과:캐시 무시하기 항목을 참고하십시오.

// This only shows alerts for things after this handler is installed of course. // Because this is a gadget, error reporting can thus be inconsistent. var originalErrorHandler = window.onerror || null; // Column and error args are optional window.onerror = function ( message, url, line, colomn, error ) { 	var $msg = $( '<p>' ); 	if ( url ) { 		$( '<span>' ) 			.text( url + ' at line ' + line + ': ' ) 			.appendTo( $msg ); 	} 	$( '<span>' ) 		.text( message ) 		.appendTo( $msg );  	mw.notify( $msg, { 		autoHide: true, 		autoHideSeconds: 10, 		tag: null, 		title: '자바스크립트 오류', 		type: 'error' 	} ); 	if (originalErrorHandler) { 		return originalErrorHandler.apply(this, arguments); 	} }; // unbind on leaving the page $( window ) 	.on( 'unload', function () { 		window.onerror = originalErrorHandler; 	} );