minor fix

This commit is contained in:
Xuan Sang LE
2018-03-17 23:15:52 +01:00
parent 5c5517e685
commit a111162e7b
2 changed files with 15 additions and 9 deletions

View File

@ -178,12 +178,18 @@ class GraphEditor extends this.OS.GUI.BaseApplication
renderSVG: (silent) ->
me = @
id = Math.floor(Math.random() * 100000) + 1
if silent
mermaid.parseError = (e, h) ->
else
mermaid.parseError = (e, h) ->
me.error e
mermaid.render "c#{id}", @editor.getValue(), (text, f) ->
#if silent
# mermaid.parseError = (e, h) ->
#else
# mermaid.parseError = (e, h) ->
# me.error e
text = @editor.getValue()
try
mermaid.parse text
catch e
me.error __("Syntax error: {0}", e.str) if not silent
return
mermaid.render "c#{id}", text, (text, f) ->
me.preview.innerHTML = text
$(me.preview).append me.btctn
me.calibrate()