From 586fe1a7ba622b612f0e74122412d4b551da95ee Mon Sep 17 00:00:00 2001 From: zero Date: Fri, 21 Nov 2008 07:22:10 +0000 Subject: [PATCH] =?UTF-8?q?=EC=97=90=EB=94=94=ED=84=B0=EC=BB=B4=ED=8F=AC?= =?UTF-8?q?=EB=84=8C=ED=8A=B8=EC=9D=98=20=ED=8C=9D=EC=97=85=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=96=B4=20=EC=9C=84=EC=B9=98=EA=B0=80=20=EC=88=A8?= =?UTF-8?q?=EA=B2=A8=EC=A7=80=EB=8A=94=20=EB=AC=B8=EC=A0=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4951 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/editor/tpl/js/editor.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/editor/tpl/js/editor.js b/modules/editor/tpl/js/editor.js index 50811c186..c665f0842 100755 --- a/modules/editor/tpl/js/editor.js +++ b/modules/editor/tpl/js/editor.js @@ -500,17 +500,18 @@ function showEditorHelp(e,editor_sequence){ } } -function showEditorExtension(e,editor_sequence){ +function showEditorExtension(evt,editor_sequence){ var oid = 'editorExtension_'+editor_sequence; + var e = new xEvent(evt); if(xGetElementById(oid).className =='extension2'){ xGetElementById(oid).className = 'extension2 open'; if(e.pageX <= xWidth('editor_component_'+editor_sequence)){ xGetElementById('editor_component_'+editor_sequence).style.right='auto'; - xGetElementById('editor_component_'+editor_sequence).style.left='0'; + xGetElementById('editor_component_'+editor_sequence).style.left='0px'; }else{ - xGetElementById('editor_component_'+editor_sequence).style.right='0'; - xGetElementById('editor_component_'+editor_sequence).style.left=''; + xGetElementById('editor_component_'+editor_sequence).style.right='0px'; + xGetElementById('editor_component_'+editor_sequence).style.left='auto'; } }else{