feat(draw/BpmnRenderer): allow subclassing with custom priority

This commit is contained in:
Nico Rehwaldt 2015-09-17 11:01:08 +02:00
parent bc1afe16d6
commit cc06e84cce
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ var LABEL_STYLE = {
};
function BpmnRenderer(eventBus, styles, pathMap) {
function BpmnRenderer(eventBus, styles, pathMap, priority) {
BaseRenderer.call(this, eventBus);
BaseRenderer.call(this, eventBus, priority);
var textUtil = new TextUtil({
style: LABEL_STYLE,