AvocadoAmber/AvocadoEdition_Light/plugin/editor/smarteditor2/autosave.editor.js

12 lines
325 B
JavaScript
Raw Normal View History

2024-09-22 15:53:38 +09:00
function get_editor_wr_content() {
return oEditors.getById['wr_content'].getIR();;
2022-09-17 20:50:50 +09:00
}
2024-09-22 15:53:38 +09:00
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]);
2022-09-17 20:50:50 +09:00
2024-09-22 15:53:38 +09:00
return;
}