editorGetContent를 공용사용하게 하여 preview, temp save load가 xquared에서도 가능도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3049 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2007-11-22 17:29:04 +00:00
parent a1baa34a31
commit 671182b766
4 changed files with 12 additions and 15 deletions

View file

@ -302,10 +302,8 @@ function XmlJsFilterProc(confirm_msg) {
function procFilter(fo_obj, filter_func) {
// form문 안에 위지윅 에디터가 세팅되어 있을 경우 에디터의 값과 지정된 content field를 sync
var editor_sequence = fo_obj.getAttribute('editor_sequence');
if(typeof(editor_sequence)!='undefined' && editor_sequence && typeof(editorRelKeys)!='undefined') {
if(typeof(editorRelKeys[editor_sequence]['func']) =='function') {
editorRelKeys[editor_sequence]['func'](editor_sequence);
}
if(typeof(editor_sequence)!='undefined' && editor_sequence && typeof(editorRelKeys)!='undefined') {
editorRelKeys[editor_sequence]['content'].value = editorGetContent(editor_sequence);
}
filter_func(fo_obj);