모바일: 온라인 서식 너비 조정

This commit is contained in:
whitedot
2013-11-04 11:12:15 +09:00
parent 03260932ee
commit 65c7ed8095
8 changed files with 33 additions and 34 deletions

View File

@ -38,7 +38,7 @@ function editor_html($id, $content, $is_dhtml_editor=true)
}
$ckeditor_class = $is_dhtml_editor ? "ckeditor" : "";
$html .= "\n<textarea id=\"$id\" name=\"$id\" class=\"$ckeditor_class\" style=\"width:100%;\" maxlength=\"65536\">$content</textarea>";
$html .= "\n<textarea id=\"$id\" name=\"$id\" class=\"$ckeditor_class\" maxlength=\"65536\">$content</textarea>";
$html .= "\n<span class=\"sound_only\">웹 에디터 끝</span>";
return $html;
}