DEXT5 Editor :: Config :: ImageBaseUrl

config.ImageBaseUrl

에디터 이미지 기본 주소를 설정합니다.

remarks

url은 http://를 포함한 전체 경로를 입력해야 합니다.
예) http://localhost/dext5editor/

sample code

<script type="text/javascript" src="dext5/js/dext5editor.js"></script>	
 
<!-- ..... 생략 ..... -->
 
<div style="width:900px;height:550px">    
    <script type="text/javascript">

        // 에디터 이미지 기본 주소를 설정합니다.
        DEXT5.config.ImageBaseUrl = "http://www.dext5.com/dext5editor/";

        new Dext5editor("editor1");

    </script>       
</div>