[Confluence Server/Data Center] 페이지 편집 시 '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>