File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
- // flowchart, v1.2.2
1
+ // flowchart, v1.2.3
2
2
// Copyright (c)2013 Adriano Raiano (adrai).
3
3
// Distributed under MIT license
4
4
// http://adrai.github.io/flowchart.js
97
97
'element-color' : 'black' ,
98
98
'fill' : 'white' ,
99
99
'yes-text' : 'yes' ,
100
- 'no-text' : 'no'
100
+ 'no-text' : 'no' ,
101
+ 'arrow-end' : 'block'
101
102
} ;
102
103
function _defaults ( options , defaultOptions ) {
103
104
if ( ! options || typeof options === 'function' ) {
176
177
line . attr ( {
177
178
stroke : chart . options [ 'line-color' ] ,
178
179
'stroke-width' : chart . options [ 'line-width' ] ,
179
- 'arrow-end' : 'block'
180
+ 'arrow-end' : chart . options [ 'arrow-end' ]
180
181
} ) ;
181
182
182
183
if ( text ) {
Original file line number Diff line number Diff line change @@ -90,7 +90,8 @@ <h3>Usage</h3>
90
90
'element-color': 'black',
91
91
'fill': 'white',
92
92
'yes-text': 'yes',
93
- 'no-text': 'no'
93
+ 'no-text': 'no',
94
+ 'arrow-end': 'block'
94
95
});
95
96
</script>
96
97
</ pre >
You can’t perform that action at this time.
0 commit comments