tfrydrychewicz / aurelia-flux

Flux dispatcher plugin for Aurelia
MIT License
74 stars 17 forks source link

Not working with custom instance activator #13

Open matjaz opened 9 years ago

matjaz commented 9 years ago

I am using https://github.com/matjaz/aurelia-property-injection which is using custom instance activator. Actions dispatched are not handled by other handlers.

import {inject} from 'aurelia-property-injection';
import {handle, Dispatcher} from 'aurelia-flux';

export class One {
  @inject dispatcher: Dispatcher;
}