백괴게임>Ash |
백괴게임>Ash |
1번째 줄: |
1번째 줄: |
| Sub
| | 아낚!! 자바스크립트가 작동 안해! |
| function disableArticleEdit() {
| |
| spancheck = document.getElementsByTagName( 'span' );
| |
| for( i = 0; i < spancheck.length; i++ ) {
| |
| if( spancheck[i].getAttribute( 'id' ) != 'nosourceview' ) {
| |
| continue;
| |
| }
| |
| editLink = document.getElementById( 'ca-edit' ).firstChild;
| |
| editLink.removeAttribute( 'href', 0 );
| |
| editLink.style.color = 'gray';
| |
| if (mw.config.get("skin") == 'vector')
| |
| {
| |
| editLink.innerHTML = '<div style="margin-left:5px;margin-right:5px;margin-top:16px;font-size:small">관라자도 편집 못함</div>';
| |
| }
| |
| else
| |
| {
| |
| editLink.innerHTML = '관리자도 편집 못함';
| |
| }
| |
| }
| |
| }
| |
| addOnloadHook( disableArticleEdit );
| |
| End Sub
| |