mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-22 12:49:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@575 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
47fdc889c3
commit
d15a45faa5
3 changed files with 6 additions and 7 deletions
|
|
@ -78,6 +78,7 @@ function editorStart(upload_target_srl) {
|
|||
xAddEventListener(document,'mousedown',editorHideObject);
|
||||
|
||||
// 문단작성기능 on/off
|
||||
/*
|
||||
if(xIE4Up) {
|
||||
xDisplay('editor_paragraph_'+upload_target_srl, 'none');
|
||||
xDisplay('editor_use_paragraph_box_'+upload_target_srl, 'inline');
|
||||
|
|
@ -85,6 +86,7 @@ function editorStart(upload_target_srl) {
|
|||
xDisplay('editor_paragraph_'+upload_target_srl, 'block');
|
||||
xDisplay('editor_use_paragraph_box_'+upload_target_srl, 'none');
|
||||
}
|
||||
*/
|
||||
|
||||
// 에디터의 내용을 지속적으로 fo_obj.content.value에 입력
|
||||
editorSyncContent(fo_obj.content, upload_target_srl);
|
||||
|
|
@ -184,6 +186,7 @@ function editorReplaceHTML(iframe_obj, html) {
|
|||
// 입력 키에 대한 이벤트 체크
|
||||
function editorKeyPress(evt) {
|
||||
var e = new xEvent(evt);
|
||||
/*
|
||||
if (e.keyCode == 13) {
|
||||
if(xIE4Up && e.shiftKey == false && !xGetElementById("use_paragraph").checked ) {
|
||||
if(e.target.parentElement.document.designMode!="On") return;
|
||||
|
|
@ -195,6 +198,7 @@ function editorKeyPress(evt) {
|
|||
return;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
if (e.ctrlKey) {
|
||||
switch(e.keyCode) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue