메타 데이터의 끝으로 건너뛰기
메타 데이터의 시작으로 이동

이 페이지의 이전 버전을 보고 있습니다. 현재 버전 보기.

현재와 비교 View Version History

버전 1 현재 »

\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

  • 레이블 없음