fix(draw): render data-association-markers

This commit is contained in:
Nico Rehwaldt 2014-07-24 11:02:52 +02:00
parent ec83cc67d9
commit 2934e2bfc9
1 changed files with 2 additions and 2 deletions

View File

@ -1050,12 +1050,12 @@ function BpmnRenderer(events, styles, pathMap) {
},
'bpmn:DataInputAssociation': function(p, element) {
return renderer('bpmn:Association')(p, element, {
markerEnd: marker('element-association-end')
markerEnd: marker('data-association-end')
});
},
'bpmn:DataOutputAssociation': function(p, element) {
return renderer('bpmn:Association')(p, element, {
markerEnd: marker('element-association-end')
markerEnd: marker('data-association-end')
});
},
'bpmn:MessageFlow': function(p, element) {