Files
Nico Rehwaldt 67d81c346c fix(replace): pre-build BPMN elements
This simplifies the ways we work with replacements.

Instead of monkey-patching the original replace functionality we

* create the business object / target object
* pass it to replace

A simple way that works well with our existing infrastructure.

Other changes:

* fixes redo / undo issues.
* splits context-pad + replace

Closes #180
2015-03-11 16:19:09 +01:00

8 lines
221 B
JavaScript

module.exports = {
__depends__: [
require('diagram-js/lib/features/popup-menu'),
require('diagram-js/lib/features/replace'),
require('../modeling')
],
bpmnReplace: [ 'type', require('./BpmnReplace') ]
};