fix(bpmnrenderer): set fill color of data associations to 'none'

close #68
This commit is contained in:
jdotzki 2014-05-28 18:27:56 +02:00
parent e37bddf3a4
commit 97d1adeb8c
1 changed files with 4 additions and 2 deletions

View File

@ -1071,13 +1071,15 @@ function BpmnRenderer(events, styles, bpmnRegistry, pathMap) {
'bpmn:DataInputAssociation': function(p, data) {
return drawLine(p, data.waypoints, {
strokeDasharray: '2,4',
markerEnd: marker('data-association-end')
markerEnd: marker('data-association-end'),
fill: 'none'
});
},
'bpmn:DataOutputAssociation': function(p, data) {
return drawLine(p, data.waypoints, {
strokeDasharray: '2,4',
markerEnd: marker('data-association-end')
markerEnd: marker('data-association-end'),
fill: 'none'
});
},
'bpmn:MessageFlow': function(p, data) {