ember-pusher icon indicating copy to clipboard operation
ember-pusher copied to clipboard

A proper Ember / Pusher integration.

Results 7 ember-pusher issues
Sort by recently updated
recently updated
newest added

Our team is on `ember 2.18.2` and we've been getting a deprecation warning that `ember-cli-babel 5.x has been deprecated`. ``` DEPRECATION: ember-cli-babel 5.x has been deprecated. Please upgrade to at...

This PR replaces the use of `.contains` for `.includes` since `.contains` is no longer a method on the array in the latest versions of Ember. https://www.emberjs.com/deprecations/v2.x/#toc_ember-runtime-enumerable-contains

I saw these errors appear in my debugger after updating to ember 1.13.3. Looks like we need to gaurd against calling set on a destroyed on controller

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...

Right now, PUSHER_SUBSCRIPTIONS is a constant and any modifications to it at runtime (other than during controller's `init()`) will be ignored. Make EmberPusher.Bindings watch pusherSubscriptions and subscribe/unsubscribe as the user...

enhancement

Referring to https://github.com/jamiebikies/ember-pusher/blob/5c3cd86d9930adfc8115307bc8a2e26f7986d553/lib/ember-pusher/controller.js#L124

One of the changes in PR #49 was (emphasis added): > - Updated code to explicitly inject the pusher service where necessary due to the [removal of implicit injection support](https://deprecations.emberjs.com/v3.x/#toc_implicit-injections)...