Confluence 페이지 편집 시 'Notify watchers' 비활성화 하기
문제
페이지 생성 또는 편집 시 'Notify watchers' 체크박스를 기본적으로 비활성화 합니다.
해결책
Confluence 5.8 이상의 경우 아래 스크립트를 Custom HTML Head에 추가합니다.
<script> function disableWatchers() { setTimeout(disableWatchers, 1000); if ( $('#notifyWatchers').attr( "mz" ) != 1) { setTimeout(function() {$('#notifyWatchers').removeAttr('checked');}, 1000); $('#notifyWatchers').attr( "mz", 1); } } disableWatchers(); </script>
관련 문서
, multiple selections available,
Related content
Confluence 익명 접근 숨기기(hide annonymous access)
Confluence 익명 접근 숨기기(hide annonymous access)
More like this
Confluence 공간 삭제 버튼 비활성화 하기
Confluence 공간 삭제 버튼 비활성화 하기
More like this
Confluence Page URL 생성 규칙
Confluence Page URL 생성 규칙
More like this
Scroll Viewport for Confluence Guide(Data Center)
Scroll Viewport for Confluence Guide(Data Center)
More like this