James Herdman

Results 147 comments of James Herdman
trafficstars

@Alonski common troublesome pattern without ember concurrency: ``` // some component async function() { let val = await this.doSomething(); this.set('someProp', val); } ``` If the component is destroyed during `this.doSomething()`...

Two quick notes: 1. I couldn't get the test suite to run on my local machine, and I was kind of hoping this would be a bit more automated (e.g....

Tests seem to be failing randomly, I'll investigate the issue soon. I think there's an issue with the test runner itself.

@guillaumepotier would you be interested in pairing on this with me? I can't figure out why this is failing, but I'm nearly 100% certain it has something to do with...

This seems to be only a partial solution. There are two problems when using Ember: 1. Without Location#hash, there could be conflicting entries in `localStorage`. Pretend, for example, that our...

I don't know if anyone has this written down anywhere, but the basic procedure is like this: - Have a VERSION constant somewhere, and bump it's number according to [Semver](http://semver.org/)...

I'm running into this as well. Is there a way to work around this?

Some data I've gathered: 1. Changeset appears to be valid on the client, and `changeset.save()` is called 2. API responds with 422, looks something like this: ```json {"errors":{"user_email":["[email protected] is already...

I thought that that's what the switch language drop down did and came to report that it didn't seem to be working.

I'm fairly certain it's impossible to use ember-cli-postcss to compile `addon.css` such that host apps need only include the finalized output. The first hint is that you need to add...