fix(modeling): add missing $inject

This commit is contained in:
Nico Rehwaldt 2014-08-05 17:35:54 +02:00
parent c67709ce34
commit a8d51a849d
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,8 @@ function ElementFactory(bpmnFactory) {
ElementFactory.prototype = Object.create(BaseElementFactory.prototype); ElementFactory.prototype = Object.create(BaseElementFactory.prototype);
ElementFactory.$inject = [ 'bpmnFactory' ];
module.exports = ElementFactory; module.exports = ElementFactory;