mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-17 18:29:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@562 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
371a3ceefe
commit
1dececb466
3 changed files with 14 additions and 9 deletions
|
|
@ -38,6 +38,8 @@
|
|||
<img src="./images/italic.gif" alt="{$lang->edit->help_italic}" class="editor_icon" id="component_{$upload_target_srl}_Italic" />
|
||||
<img src="./images/underline.gif" alt="{$lang->edit->help_underline}" class="editor_icon" id="component_{$upload_target_srl}_Underline" />
|
||||
<img src="./images/strike.gif" alt="{$lang->edit->help_strike}" class="editor_icon" id="component_{$upload_target_srl}_StrikeThrough" />
|
||||
<img src="./images/undo.gif" alt="{$lang->edit->help_undo}" class="editor_icon" id="component_{$upload_target_srl}_undo" />
|
||||
<img src="./images/redo.gif" alt="{$lang->edit->help_redo}" class="editor_icon" id="component_{$upload_target_srl}_redo" />
|
||||
</div>
|
||||
|
||||
<!-- 에디팅 관련 문단 기능 (IE에서는 사용자 선택시 나타남) -->
|
||||
|
|
|
|||
|
|
@ -255,6 +255,8 @@ function editorEventCheck(evt) {
|
|||
case 'outdent' :
|
||||
case 'insertorderedlist' :
|
||||
case 'insertunorderedlist' :
|
||||
case 'undo' :
|
||||
case 'redo' :
|
||||
editorDo(component_name, '', upload_target_srl);
|
||||
break;
|
||||
|
||||
|
|
@ -371,8 +373,14 @@ function editorDo(name, value, target) {
|
|||
function _editorDoSrl(name, value, upload_target_srl) {
|
||||
var iframe_obj = editorGetIFrame(upload_target_srl);
|
||||
editorFocus(upload_target_srl);
|
||||
if(xIE4Up) iframe_obj.contentWindow.document.execCommand(name, false, value);
|
||||
else iframe_obj.contentWindow.document.execCommand(name, false, value);
|
||||
try {
|
||||
if(xIE4Up) {
|
||||
iframe_obj.contentWindow.document.execCommand(name, false, value);
|
||||
} else {
|
||||
iframe_obj.contentWindow.document.execCommand(name, false, value);
|
||||
}
|
||||
} catch(e) {
|
||||
}
|
||||
editorFocus(upload_target_srl);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -33,13 +33,8 @@
|
|||
$lang->edit->help_italic = "글자를 기울이게 합니다";
|
||||
$lang->edit->help_underline = "밑줄을 긋습니다";
|
||||
$lang->edit->help_strike = "취소선을 긋습니다";
|
||||
$lang->edit->help_add_url= "link를 만듭니다";
|
||||
$lang->edit->help_add_image = "이미지를 추가합니다";
|
||||
$lang->edit->help_add_multimedia = "동영상/플래쉬등을 추가합니다";
|
||||
$lang->edit->help_add_emoticon = "이모티콘을 추가합니다";
|
||||
$lang->edit->help_add_quotation = "글박스를 만들거나 글숨김 기능을 추가합니다";
|
||||
$lang->edit->help_add_html = "html 코드를 직접 입력합니다";
|
||||
$lang->edit->help_add_html = "html 코드를 직접 입력합니다";
|
||||
$lang->edit->help_redo = "이전 동작으로 돌아갑니다";
|
||||
$lang->edit->help_undo = "다음 동작으로 돌아갑니다";
|
||||
$lang->edit->help_align_left = "왼쪽 정렬을 합니다";
|
||||
$lang->edit->help_align_center = "가운데 정렬을 합니다";
|
||||
$lang->edit->help_align_right = "오른쪽 정렬을 합니다";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue