버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

\uD83E\uDD14 문제

페이지 생성 또는 편집 시 'Notify watchers' 체크박스를 기본적으로 비활성화 합니다.

\uD83C\uDF31 해결책

Confluence 5.8 이상의 경우 아래 스크립트를 Custom HTML Head에 추가합니다.

  1. 코드 블럭
    <script>
    function disableWatchers() {
      setTimeout(disableWatchers, 1000);
      if ( $('#notifyWatchers').attr( "mz" ) != 1) {
        setTimeout(function() {$('#notifyWatchers').removeAttr('checked');}, 1000);
        $('#notifyWatchers').attr( "mz", 1);
      }
    }
    disableWatchers();
    </script>

\uD83D\uDCCE 관련 문서

https://confluence.atlassian.com/confkb/how-to-uncheck-notify-watchers-check-box-on-confluence-editor-by-default-314449908.html