Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
themeEmacs
editor.checkPersonalData(function (result) => {
    if (!result) {
        // 개인 정보 검사가 통과되지 않으면 개인 정보 검사 다이얼로그 열기
        editor.getUIManager().showDialog('personalDataProtection');
    }
});

...