Param

Method

Event

 

 

AttrImagev2.0.5.15 or higher

이미지 삽입 시 style이 아닌 속성값으로 width와 height가 나오도록 설정합니다.

 

Parameters

TRUE

width, height로 설정

<img src="/image.jpg" width="55px" height="55px" />

FALSE

style 속성으로 설정 (기본 값)

<img src="/image.jpg" style="width:55px; height;55px;" />

 

Sample Codes

var CrossEditor = new NamoSE("test");
CrossEditor.params.AttrImage = true;
CrossEditor.EditorStart();