Kevin Jhangiani

Results 16 comments of Kevin Jhangiani

A year later, but ran into this issue when attempting to upgrade from 2.0.2 to 2.2.3+. Currently, forced to fork and wrap an `else` around the `sendAction` call from the...

@cowboyd I'm still working through some of the issues - feel like I have a pretty good handle on the codebase now, but haven't had time to finish up the...

@cowboyd I made some progress on the first half of my proposal today, and created a branch here: https://github.com/soxhub/emberx-select/tree/v2.2.4 Here is the diff: https://github.com/soxhub/emberx-select/compare/v2.2.3...v2.2.4 What branch should I PR this...

We are also running into the same performance bottlenecks with large lists (not exclusively with ember-drag-sort, but we do experience it with this library as well). I agree that it...

2023 now - we are getting hit by this in production. any update?

Your relationship is async, thus your initial `let author = post.get('author')` is returning a promise, which you cannot call an action on. However, if you changed it to ``` post.get('author').then((author)...

@thec0keman @machty any chance of getting this merged in?

Ran into this issue as well, using node 0.12.7, deasync hangs if called within a .then block of an async function. I noticed a PR has been submitted, @abbr, do...

I'm running into the same issue on the latest ember (2.14.x) - the workaround described by @dguettler doesn't seem to work for me. Still experimenting and trying to reproduce a...

the test should actually return `` rather than `` since its not used in a block context - will need to support both block and non-block contextual components