chore(project): update didi dependency

This commit is contained in:
Nico Rehwaldt 2015-10-20 15:34:16 +02:00
parent a77796b271
commit 5d5683ff64
2 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@
"version": "bpmn-io/diagram-js-direct-editing" "version": "bpmn-io/diagram-js-direct-editing"
}, },
"didi": { "didi": {
"version": "0.0.4" "version": "0.1.0"
}, },
"ids": { "ids": {
"version": "0.1.1", "version": "0.1.1",

View File

@ -14,7 +14,7 @@ var MIN_BOUNDS = {
}; };
function LabelEditingProvider(eventBus, canvas, directEditing, commandStack, injector) { function LabelEditingProvider(eventBus, canvas, directEditing, commandStack) {
directEditing.registerProvider(this); directEditing.registerProvider(this);
commandStack.registerHandler('element.updateLabel', UpdateLabelHandler); commandStack.registerHandler('element.updateLabel', UpdateLabelHandler);
@ -66,7 +66,7 @@ function LabelEditingProvider(eventBus, canvas, directEditing, commandStack, inj
this._commandStack = commandStack; this._commandStack = commandStack;
} }
LabelEditingProvider.$inject = [ 'eventBus', 'canvas', 'directEditing', 'commandStack', 'injector' ]; LabelEditingProvider.$inject = [ 'eventBus', 'canvas', 'directEditing', 'commandStack' ];
module.exports = LabelEditingProvider; module.exports = LabelEditingProvider;