Luke Karrys

Results 170 comments of Luke Karrys

I was also seeing a difference between 8.19.2 and 9.0.0. I haven't investigated that yet but I will.

I investigated and it was my error. I was using `npm bin` and reading the output of the command without checking the exit code, so it was producing unexpected results....

To chime in, I've found myself wanting to this for ajax calls: ``` js drivingDistance: { deps: ['latitude', 'longitude'], fn: function (done) { fetchDrivingDistance(this.latitude + ',' + this.longitude, function (err,...

I think they should fire `change` events in order to have consistent behavior with other derived properties, but then you'll have an extra `change` event for each async derived prop...

If I'm reading this right, I think what you want is https://github.com/AmpersandJS/ampersand-filtered-subcollection With `ampersand-collection` the behavior is this: ``` js var Collection = require('ampersand-collection'); var C = Collection.extend({comparator: 'name'}); var...

@samhashemi Looking through the code it seems there is no event bubbling handler for `collections` (only `children`). I think this is an oversight and I'll get a PR opened to...

Maybe @HenrikJoreteg or @latentflip could chime in on why that isn't supported since they are most familiar with this code. I took a look through the example and added logging...

So after digging through the code even more (so I don't have to call on @HenrikJoreteg or @latentflip next time I get stumped on state stuff :smile:) I _think_ I...

Hey @mike-engel, while I agree that there could be an easier way, I'm not sure what or how that would look internally (or how feasible it would be to implement)....

Hey @mmacaula, I ran into a similar issue over at #90. I'm also not sure my fix there is 100% the right one. Can you test your use case with...