Page tree

Versions Compared

Key

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

...

Code Block
languagexml
themeEmacs
titleHTML
linenumberstrue
<div style="background-color: #ffffff; width:100%; height:300px;">
        <div id="synapEditor"></div>
</div>


2.1.0 이하 버전에서는 환경설정파일(config.json)의 경로를 지정해줍니다.

Code Block
languagejs
themeEmacs
titleJavascript (v2.1.0 이하)
linenumberstrue
<script src='http://www.synapeditor.com/resource/synapeditor/synapeditor.min.js'></script>
<script>
		window.editor = new SynapEditor('synapEditor', 'config.json');
</script>


2.2.0 이상 버전에서는 환경설정파일이 js 파일로 변경되었습니다. synapeditor.config.js 파일을 <script> 태그로 지정하고 SynapEditor객체 생성시 synapEditorConfig 객체(synapeditor.config.js 파일에 정의되어 있습니다)를 넘겨줍니다.

Code Block
languagejs
themeEmacs
titleJavascript (v2.2.0 이상)
linenumberstrue
<script src='http://www.synapeditor.com/resource/synapeditor/synapeditor.config.js'></script>
<script src='http://www.synapeditor.com/resource/synapeditor/synapeditor.min.js'></script>
<script>
		window.editor = new SynapEditor('synapEditor', synapEditorConfig);
</script>

...