Page tree

Versions Compared

Key

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

...

Code Block
languagejs
themeEmacs
titleHTML 불러오기 - 파라메터 사용openHTML, SynapEditorInitialized 함수사용
var editorId = 'synapEditor';
var editorConfig = {};
var html = "'<H1>Synap Editor</H><P>Holistic Rich Text Editor</P>";
';
 
// editor 초기화 완료시 실행 (async)
function SynapEditorInitialized(e) {
    var editor = e.editor;
	editor.openHTML(html);
}

// editor 초기화 완료시 실행 (sync)
function SynapEditorInitializedSync(e) {
    var editor = e.editor;
    editor.openHTML(html);
}
 
new SynapEditor('synapEditor'editorId, synapEditorConfig, htmleditorConfig);

체험하기

>> Iframe mode 체험하기