mirror of
https://github.com/bpmn-io/bpmn-js.git
synced 2025-08-14 19:25:06 +08:00

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
8 lines
221 B
JavaScript
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') ]
|
|
}; |