2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-03 08:04:29 -06:00

Remove "Short description of image"

It's easier if users don't even know that's a possibility, honestly.
This commit is contained in:
Wes Cossick 2015-06-26 12:36:31 -05:00
parent d3f528accb
commit d1da791320

View File

@ -189,7 +189,7 @@ function drawLink(editor) {
function drawImage(editor) { function drawImage(editor) {
var cm = editor.codemirror; var cm = editor.codemirror;
var stat = getState(cm); var stat = getState(cm);
_replaceSelection(cm, stat.image, '![Short description of image](http://', ')'); _replaceSelection(cm, stat.image, '![](http://', ')');
} }