11 lines
325 B
JavaScript
11 lines
325 B
JavaScript
function get_editor_wr_content() {
|
|
return oEditors.getById['wr_content'].getIR();;
|
|
}
|
|
|
|
function put_editor_wr_content(content) {
|
|
oEditors.getById["wr_content"].exec("SET_CONTENTS", [""]);
|
|
//oEditors.getById["wr_content"].exec("SET_IR", [""]);
|
|
oEditors.getById["wr_content"].exec("PASTE_HTML", [content]);
|
|
|
|
return;
|
|
}
|