bpmn-js/lib/util/Di.js

9 lines
232 B
JavaScript
Raw Normal View History

2014-06-17 09:48:23 +00:00
'use strict';
module.exports.isExpandedPool = function(semantic) {
2014-06-17 09:48:23 +00:00
return !!semantic.processRef;
};
2014-06-17 09:48:23 +00:00
module.exports.isExpanded = function(semantic) {
return !semantic.$instanceOf('bpmn:SubProcess') || semantic.di.isExpanded;
};