When extending controllers with EmberPusher.ClientEvents, I can trigger events like this with no problem:
this.pusherTrigger('channelName', 'client-test-event', {foo:1});
However, when I extend a component with EmberPusher.ClientEvents, I get the following error:
Uncaught TypeError: this.pusher.channelFor is not a function
It seems that this.pusher loses 'channelFor' when extending from a component.
Any ideas?