How to use the bpmn-js/lib/Modeler.call function in bpmn-js

To help you get started, we’ve selected a few bpmn-js examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github evanyangg / vue-bpmn-modeler / packages / CustomModeler / index.js View on Github external
export default function CustomModeler(options) {
  Modeler.call(this, options)

  this._customElements = []
}
github camunda-consulting / code / snippets / bpmnjs-custom-modeler / app / custom-modeler / index.js View on Github external
function CustomModeler(options) {
  Modeler.call(this, options);

  this._customElements = [];
}
github bptlab / chor-js / lib / Modeler.js View on Github external
export default function Modeler(options) {
  BaseModeler.call(this, options);
}
github WPS / domain-story-modeler / app / domain-story-modeler / index.js View on Github external
export default function DomainStoryModeler(options) {
  Modeler.call(this, options);

  this._customElements = [];
  this._groupElements = [];
}
github bpmn-io / bpmn-js-examples / custom-elements / app / custom-modeler / index.js View on Github external
export default function CustomModeler(options) {
  Modeler.call(this, options);

  this._customElements = [];
}