* 向EpicEditor前面增加内容 * * @param {EpicEditor} editor * @param {String} text * @return {String}
(editor, text)
| 105 | * @return {String} |
| 106 | */ |
| 107 | function epicEditorPrepend (editor, text) { |
| 108 | return editor.getElement('editor').body.innerHTML = text + editor.getElement('editor').body.innerHTML; |
| 109 | } |
| 110 | |
| 111 | // 自动创建编辑框 |
| 112 | $(function () { |
nothing calls this directly
no outgoing calls
no test coverage detected