Garrick Cheung
Garrick Cheung
I like the idea for different queues to handle different tiers of messaging: 1. Application tier. - Imagine an error from model save in the route or controller showing a...
@offirgolan I'm having a similar problem, seeing the same error, but only in my test. My scenario is slightly different. I created a module that returns the `buildValidations` return value...
My issue had to do with the test not having a container. There were two solutions for me, all involving `moduleFor` from `ember-qunit`. 1. use `moduleFor` with another module but...
The recent talk by [Dan Ambramov about async rendering in React](https://www.youtube.com/watch?v=v6iR3Zk4oDY) made me think of this lazy loading routless engines issue.
I'm experiencing a similar bug with the input helper on `[email protected]` and `[email protected]`. Here's my basic setup for the component: https://ember-twiddle.com/458c15dec9d3027cb92ee38c8e176e1a I'm trying to simulate a form submission when the...
Dug a little more and eventually came across Ember.TextField documentation that the `{{input bubbles=true}}` would bubble up the keyUp event to parent nodes. Instead of using keyUp, I used keyPress...
I'm also seeing an issue with PhantomJS and `[email protected]`. I think moving away from PhantomJS is ideal but I'll need to downgrade to `[email protected]` until my team can get Chrome...
yeah. I'll try to take a stab this coming week.
@rwjblue any guidance to get this PR approved/merged?
Could you help me understand what `parent`, `app`, and `hostApp` would refer to? From the docs: `parent` > This addon's parent. > > If the addon is a direct dependency...