ckeditor 진입 전 #307 의견9 에 따른 웹에디터 안내 메세지 추가

This commit is contained in:
whitedot
2013-03-12 10:25:16 +09:00
parent e2901f4bf5
commit 3d071f1b8e

View File

@ -7,6 +7,7 @@ function editor_html($id, $content, $ckeditor=true, $class="")
static $js = true;
$html = "";
$html .= "<span class=\"sound_only\">웹에디터 시작</span>";
if ($js) {
$html .= "\n".'<script src="'.G4_CKEDITOR_URL.'/ckeditor.js"></script>';
$html .= "\n".'<script>var g4_ckeditor_url = "'.G4_CKEDITOR_URL.'";</script>';
@ -16,6 +17,7 @@ function editor_html($id, $content, $ckeditor=true, $class="")
$ckeditor_class = $ckeditor ? "ckeditor" : "";
$html .= "\n<textarea id=\"$id\" name=\"$id\" class=\"$ckeditor_class $class\" style=\"width:100%;\">$content</textarea>";
$html .= "\n<span class=\"sound_only\">웹 에디터 끝</span>";
return $html;
}