Adam Krebs

Results 185 comments of Adam Krebs

> There are some issues with jashkenas/coffee-script that will be incredibly hard to fix because of the compiler's design. Not trolling but I've seen you mention this a number of...

There are still a few pending tests that could get squashed by this. The static super ref needs to reference `__super__.constructor` ([CS](https://github.com/jashkenas/coffeescript/blob/1.7.1/src/nodes.coffee#L615)), and some of the scope lookup stuff may...

Shouldn't CSR at least try to match CS `super` as it stands now, and then fix if CS changes? There hasn't been any progress on super in years and it's...

I'd say this is just an implementation detail. Their documented public behavior is to add just a single model, but this way you don't need to use some ugly hack...

Collection's `push`, `pop`, `unshift`, etc. methods are meant to mimic the ones found on Array. Their names are the same but their exact API might be slightly different. With all...

Wanna whip up a docs pull and we'll take it from there?

This has been brought up and turned down a few times in the past. What's wrong with `model.clear(); model.set(model.defaults());`?

That's because `where` is [special cased](https://github.com/jashkenas/backbone/blob/fe908db1745bef19e75d0d5895e029c1a2623ad9/backbone.js#L1007-L1009). It's an unfortunate side effect of the way chaining works in Underscore with Backbone. Do you have a better solution?

Yup, specifically in #3434 as a fix for #3426. I'm not super familiar with this code but I think the solution is to not to pre-encode your string. See if...