mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-21 06:18:59 +00:00
25 lines
410 B
JavaScript
25 lines
410 B
JavaScript
|
module.exports = {
|
||
|
'bpmn:Task': {
|
||
|
'height': 40,
|
||
|
'width': 40
|
||
|
},
|
||
|
'bpmn:SubProcess': {
|
||
|
'resolver': function(element) {
|
||
|
|
||
|
var isExpanded = element.businessObject.di.isExpanded;
|
||
|
|
||
|
if (isExpanded) {
|
||
|
return {
|
||
|
'height': 100,
|
||
|
'width': 100
|
||
|
};
|
||
|
} else {
|
||
|
return {
|
||
|
'height': 40,
|
||
|
'width': 40
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|