fix(context pad): remove instantiating gateways from replace menu
close #212
This commit is contained in:
parent
7207d010db
commit
22c0065d5d
|
@ -319,25 +319,26 @@ var gatewayReplace = [
|
||||||
options: {
|
options: {
|
||||||
newBusinessAtt: { instantiate: false, eventGatewayType: 'Exclusive' }
|
newBusinessAtt: { instantiate: false, eventGatewayType: 'Exclusive' }
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Event based instantiating Gateway',
|
|
||||||
actionName: 'replace-with-exclusive-event-based-gateway',
|
|
||||||
className: 'icon-exclusive-event-based',
|
|
||||||
targetType: 'bpmn:EventBasedGateway',
|
|
||||||
options: {
|
|
||||||
newBusinessAtt: { instantiate: true, eventGatewayType: 'Exclusive' }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Parallel Event based instantiating Gateway',
|
|
||||||
actionName: 'replace-with-parallel-event-based-instantiate-gateway',
|
|
||||||
className: 'icon-parallel-event-based-instantiate-gateway',
|
|
||||||
targetType: 'bpmn:EventBasedGateway',
|
|
||||||
options: {
|
|
||||||
newBusinessAtt: { instantiate: true, eventGatewayType: 'Parallel' }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
// Gateways deactivated until https://github.com/bpmn-io/bpmn-js/issues/194
|
||||||
|
// {
|
||||||
|
// label: 'Event based instantiating Gateway',
|
||||||
|
// actionName: 'replace-with-exclusive-event-based-gateway',
|
||||||
|
// className: 'icon-exclusive-event-based',
|
||||||
|
// targetType: 'bpmn:EventBasedGateway',
|
||||||
|
// options: {
|
||||||
|
// newBusinessAtt: { instantiate: true, eventGatewayType: 'Exclusive' }
|
||||||
|
// }
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// label: 'Parallel Event based instantiating Gateway',
|
||||||
|
// actionName: 'replace-with-parallel-event-based-instantiate-gateway',
|
||||||
|
// className: 'icon-parallel-event-based-instantiate-gateway',
|
||||||
|
// targetType: 'bpmn:EventBasedGateway',
|
||||||
|
// options: {
|
||||||
|
// newBusinessAtt: { instantiate: true, eventGatewayType: 'Parallel' }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
];
|
];
|
||||||
|
|
||||||
var taskReplace = [
|
var taskReplace = [
|
||||||
|
|
Loading…
Reference in New Issue