mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-17 20:41:32 +00:00
9be61259bd
We use ES modules, so 'use strict' is not necessary anymore.
16 lines
333 B
JavaScript
16 lines
333 B
JavaScript
import inherits from 'inherits';
|
|
|
|
import RuleProvider from 'diagram-js/lib/features/rules/RuleProvider';
|
|
|
|
|
|
export default function CustomRules(eventBus) {
|
|
RuleProvider.call(this, eventBus);
|
|
}
|
|
|
|
CustomRules.$inject = [ 'eventBus' ];
|
|
|
|
inherits(CustomRules, RuleProvider);
|
|
|
|
CustomRules.prototype.init = function() {
|
|
// placeholder
|
|
}; |