에디터의 iframe obj의 width가 잘못 적용되던 문제 해결

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3032 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-11-21 01:53:56 +00:00
parent ef82656fe1
commit 9556c6fd86

View file

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