로그인 위젯의 회원메뉴 간격 넓힘. 댓글/ 위젯컨텐츠 수정시 에디터의 가로 크기를 제대로 표시되도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3040 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-11-22 02:08:43 +00:00
parent 0c99858e7c
commit a7f7a11d46
5 changed files with 10 additions and 7 deletions

View file

@ -96,7 +96,8 @@ function editorStart(editor_sequence, primary_key, content_key, editor_height) {
// iframe obj를 찾음
var iframe_obj = editorGetIFrame(editor_sequence);
if(!iframe_obj) return;
iframe_obj.style.width = '100%';
xWidth(iframe_obj.parentNode, '100%');
xWidth(iframe_obj, xWidth(iframe_obj.parentNode)-20);
// 현 에디터를 감싸고 있는 form문을 찾음
var fo_obj = editorGetForm(editor_sequence);