Fix bug that broke bold and italics

This commit is contained in:
Wes Cossick 2015-06-22 21:24:57 -05:00
parent da448e733e
commit c3b3300bcb
2 changed files with 4 additions and 4 deletions

6
simplemde.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -313,7 +313,7 @@ function _toggleLine(cm, name) {
}
function _toggleBlock(editor, type, start_chars, end_chars) {
if (/editor-preview-active/.test(cm.getWrapperElement().lastChild.className))
if (/editor-preview-active/.test(editor.codemirror.getWrapperElement().lastChild.className))
return;
end_chars = (typeof end_chars === 'undefined') ? start_chars : end_chars;