mirror of https://github.com/status-im/codimd.git
Upgrade viz.js to fix manual workaround and get smaller file size
This commit is contained in:
parent
f27fc90a74
commit
3df5507589
|
@ -115,7 +115,7 @@
|
|||
"validator": "^6.2.0",
|
||||
"velocity-animate": "^1.4.0",
|
||||
"visibilityjs": "^1.2.4",
|
||||
"viz.js": "^1.4.1",
|
||||
"viz.js": "^1.7.0",
|
||||
"winston": "^2.3.0",
|
||||
"xss": "^0.3.3"
|
||||
},
|
||||
|
|
|
@ -345,7 +345,8 @@ export function finishView(view) {
|
|||
});
|
||||
//graphviz
|
||||
var graphvizs = view.find("div.graphviz.raw").removeClass("raw");
|
||||
function parseGraphviz(key, value) {
|
||||
graphvizs.each(function (key, value) {
|
||||
try {
|
||||
var $value = $(value);
|
||||
var $ele = $(value).parent().parent();
|
||||
|
||||
|
@ -355,21 +356,11 @@ export function finishView(view) {
|
|||
|
||||
$ele.addClass('graphviz');
|
||||
$value.children().unwrap().unwrap();
|
||||
}
|
||||
graphvizs.each(function (key, value) {
|
||||
try {
|
||||
parseGraphviz(key, value);
|
||||
} catch (err) {
|
||||
// workaround for graphviz not recover from error
|
||||
try {
|
||||
parseGraphviz(key, value);
|
||||
} catch (err) {
|
||||
var $value = $(value);
|
||||
$value.unwrap();
|
||||
$value.parent().append('<div class="alert alert-warning">' + err + '</div>');
|
||||
console.warn(err);
|
||||
}
|
||||
}
|
||||
});
|
||||
//mermaid
|
||||
const mermaids = view.find("div.mermaid.raw").removeClass("raw");
|
||||
|
|
Loading…
Reference in New Issue