catch markdown preview errors

pull/1/head
ansuz 8 years ago
parent bc26f7fc4e
commit 617e027f12

@ -112,7 +112,9 @@ define([
var drawPreview = Cryptpad.throttle(function () { var drawPreview = Cryptpad.throttle(function () {
if (CodeMirror.highlightMode !== 'markdown') { return; } if (CodeMirror.highlightMode !== 'markdown') { return; }
try {
DiffMd.apply(DiffMd.render(editor.getValue()), $preview); DiffMd.apply(DiffMd.render(editor.getValue()), $preview);
} catch (e) { console.error(e); }
}, 150); }, 150);
var onLocal = config.onLocal = function () { var onLocal = config.onLocal = function () {

Loading…
Cancel
Save