Page tree

Versions Compared

Key

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

Status
colourYellow
title릴리즈 2.11.0 이상

에디터 본문에 변경여부를 초기화합니다. 이 함수 호출 후 isDirty() 함소를 사용하면 false가 반환됩니다Initializes the change or not in the editor body. Using the isDirty() function after calling this function will return false.


Example:

Code Block
languagejs
themeEmacs
editor.clearDirty();	// dirty flag 초기화init

if(!editor.isDirty()) {
	console.log('변경된 내용이 없습니다No changes have been made.');
};