-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Knoppex edited this page Nov 12, 2019
·
5 revisions
Übersicht:
Rules: Definierte Interaktionen zwischen den Elementen
(...\bpmn-js-develop\lib\features\rules\BpmnRules.js)
z.B. function isBoundaryCanditate(element)
function can Attach(...) {
// only attach to subprocess border
if (position && !isBoundaryAttachment(position, target)) {
return false;
}