mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
#18624280 언어팩 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7171 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
89fd530ff1
commit
746c19da19
11 changed files with 39 additions and 13 deletions
|
|
@ -536,21 +536,18 @@ function showEditorHelp(e,editor_sequence){
|
|||
}
|
||||
|
||||
function showEditorExtension(evt,editor_sequence){
|
||||
var oid = 'editorExtension_'+editor_sequence;
|
||||
var oid = '#editorExtension_'+editor_sequence;
|
||||
var e = new xEvent(evt);
|
||||
if(xGetElementById(oid).className =='extension2'){
|
||||
xGetElementById(oid).className = 'extension2 open';
|
||||
if(jQuery(oid).hasClass('extension2')){
|
||||
jQuery(oid).addClass('open');
|
||||
|
||||
if(e.pageX <= xWidth('editor_component_'+editor_sequence)){
|
||||
xGetElementById('editor_component_'+editor_sequence).style.right='auto';
|
||||
xGetElementById('editor_component_'+editor_sequence).style.left='0px';
|
||||
jQuery('#editor_component_'+editor_sequence).css('right','auto').css('left', 0);
|
||||
}else{
|
||||
xGetElementById('editor_component_'+editor_sequence).style.right='0px';
|
||||
xGetElementById('editor_component_'+editor_sequence).style.left='auto';
|
||||
jQuery('#editor_component_'+editor_sequence).css('right', 0).css('left', 'auto');
|
||||
}
|
||||
|
||||
}else{
|
||||
xGetElementById(oid).className = 'extension2';
|
||||
jQuery(oid).attr('class', 'extension2');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -574,4 +571,4 @@ function getAutoSavedSrl(ret_obj, response_tags, c) {
|
|||
|
||||
fo_obj[primary_key].value = ret_obj['document_srl'];
|
||||
if(uploadSettingObj[editor_sequence]) editorUploadInit(uploadSettingObj[editor_sequence], true);
|
||||
}
|
||||
}
|
||||
|
|
@ -24,8 +24,10 @@ function editorGetContent(editor_sequence) {
|
|||
|
||||
// 에디터에 포커스를 줌
|
||||
function editorFocus(editor_sequence) {
|
||||
var iframe_obj = editorGetIFrame(editor_sequence);
|
||||
iframe_obj.contentWindow.focus();
|
||||
try {
|
||||
var iframe_obj = editorGetIFrame(editor_sequence);
|
||||
iframe_obj.contentWindow.focus();
|
||||
} catch(e){}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue