Skip to content

Commit 0a429f6

Browse files
committed
new version
1 parent aed5cfd commit 0a429f6

16 files changed

+2735
-22
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ and then
2727
'or No?\n:>http://www.google.com' +
2828
'io=>inputoutput: catch something...\n' +
2929
'' +
30-
'st->op1->cond\n' +
30+
'st->op1(right)->cond\n' +
3131
'cond(yes)->io->e\n' + // conditions can also be redirected like cond(yes, bottom) or cond(yes, right)
32-
'cond(no)->sub1->op1');
32+
'cond(no)->sub1(left)->op1');// the other symbols too...
3333
diagram.drawSVG('diagram');
3434
3535
// you can also try to pass options:

component.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "flowchart",
3-
"version": "1.2.7",
4-
"main": "./release/flowchart-1.2.7.min.js",
3+
"version": "1.2.8",
4+
"main": "./release/flowchart-1.2.8.min.js",
55
"dependencies": {},
66
"ignore": [
77
"src/",

example/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
or No?:>http://www.google.com
5656
io=>inputoutput: catch something...
5757

58-
st->op1->cond
58+
st->op1(right)->cond
5959
cond(yes, right)->io->e
60-
cond(no)->sub1->op1
60+
cond(no)->sub1(left)->op1
6161
</textarea></div>
6262
<div><button id="run" type="button">Run</button></div>
6363
<div id="canvas"></div>

0 commit comments

Comments
 (0)