Easymde insert image and insert image at cursor position #1405
This commit is contained in:
parent
52ecf89b77
commit
5986c1d220
1 changed files with 3 additions and 3 deletions
|
@ -78,12 +78,12 @@ return <<<EOF
|
|||
|
||||
// Function required for Bludit
|
||||
// Insert HTML content at the cursor position
|
||||
function editorInsertContent(html, type='') {
|
||||
function editorInsertContent(content, type='') {
|
||||
var text = easymde.value();
|
||||
if (type == 'image') {
|
||||
easymde.value(text + "" + "\\n");
|
||||
easymde.codemirror.replaceSelection("" + "\\n");
|
||||
} else {
|
||||
easymde.value(html + "\\n");
|
||||
easymde.codemirror.replaceSelection(content + "\\n");
|
||||
}
|
||||
easymde.codemirror.refresh();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue