Skip to content

Commit b7d0e3e

Browse files
committed
use new version
1 parent 8cca5bc commit b7d0e3e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

flowchart-latest.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// flowchart, v1.2.1
1+
// flowchart, v1.2.2
22
// Copyright (c)2013 Adriano Raiano (adrai).
33
// Distributed under MIT license
44
// http://adrai.github.io/flowchart.js
@@ -1102,6 +1102,10 @@
11021102
symbol.link = sub[1];
11031103
}
11041104

1105+
if (symbol.symbolType.indexOf('\n') >= 0) {
1106+
symbol.symbolType = symbol.symbolType.split('\n')[0];
1107+
}
1108+
11051109
if (symbol.link) {
11061110
var startIndex = symbol.link.indexOf('[') + 1;
11071111
var endIndex = symbol.link.indexOf(']');

0 commit comments

Comments
 (0)