fix(rules): always allow associations from/to TextAnnotation

This commit is contained in:
Nico Rehwaldt
2016-01-21 14:19:59 +01:00
committed by pedesen
parent 7190f8bef8
commit d8ace12308
2 changed files with 49 additions and 20 deletions

View File

@ -81,6 +81,10 @@ ElementFactory.prototype.createBpmnElement = function(elementType, attrs) {
businessObject.isInterrupting = false;
}
if (attrs.associationDirection) {
businessObject.associationDirection = attrs.associationDirection;
}
var eventDefinitions,
newEventDefinition;