mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-15 11:35:54 +00:00
7b712d8428
This commit adds the ModelingFeedback component. It hooks into modeling action rejected events and displays error messages to the user. The current behavior is to show an error message when dropping a flow node outside a participant in a collaboration. Related to #203
14 lines
443 B
JavaScript
14 lines
443 B
JavaScript
module.exports = {
|
|
__init__: [
|
|
'appendBehavior',
|
|
'createBehavior',
|
|
'dropBehavior',
|
|
'removeBehavior',
|
|
'modelingFeedback'
|
|
],
|
|
appendBehavior: [ 'type', require('./AppendBehavior') ],
|
|
dropBehavior: [ 'type', require('./DropBehavior') ],
|
|
createBehavior: [ 'type', require('./CreateBehavior') ],
|
|
removeBehavior: [ 'type', require('./RemoveBehavior') ],
|
|
modelingFeedback: [ 'type', require('./ModelingFeedback') ]
|
|
}; |