mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-24 07:49:00 +00:00
0a03e59866
This commit adds the ability to model participants from the palette. * Empty diagrams can be used as a start for participant _AND_ process diagram * Process diagrams can be converted to collaboration diagrams by dropping a participant onto them Closes #128
7 lines
338 B
JavaScript
7 lines
338 B
JavaScript
module.exports = {
|
|
__init__: [ 'appendBehavior', 'dropBehavior', 'createBehavior', 'removeBehavior' ],
|
|
appendBehavior: [ 'type', require('./AppendBehavior') ],
|
|
createBehavior: [ 'type', require('./CreateBehavior') ],
|
|
removeBehavior: [ 'type', require('./RemoveBehavior') ],
|
|
dropBehavior: [ 'type', require('./DropBehavior') ]
|
|
}; |