xquared이외의 에디터에서 자바스크립트 에러나면서 수정안되던 문제 해결

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3055 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2007-11-23 04:47:48 +00:00
parent dd0c2b3a94
commit b4189996e1

View file

@ -83,7 +83,7 @@ function editorRemoveSavedDoc() {
// editor_sequence값에 해당하는 iframe의 object를 return
function editorGetIFrame(editor_sequence) {
if(editorRelKeys[editor_sequence]['editor'] != undefined)
if(editorRelKeys != undefined && editorRelKeys[editor_sequence] != undefined && editorRelKeys[editor_sequence]['editor'] != undefined)
return editorRelKeys[editor_sequence]['editor'].getFrame();
return xGetElementById( 'editor_iframe_'+ editor_sequence );
}