Aidan Feldman
Aidan Feldman
nice-to-have. only if that library is included. http://goessner.net/articles/JsonPath/
This is going to simplify a lot of the code, since the Backbone.Model code will work for simple attributes at each level.
See commit bbff1efa for failing test. I imagine the event firing code within `clear()` from #54 can be reused for this.
I wasn't able to easily determine how to fix the iPad scenario, but here is a possible fix: https://github.com/airolson/agent_orange/commit/fe2304817e0f6c62561b19e7793bec4c532927cf
The types returned from each method/attribute are really confusing - for example [here](https://github.com/kevinelliott/agent_orange#looking-at-the-platform): > ``` > > platform = ua.device.platform > => "iPhone" > ``` where `ua.device.platform` actually returns a...
Haven't played with it yet so I'm not sure how it behaves relative to clamp in Webkit, but might be worth a try. http://dev.opera.com/static/dstorey/text/text-overflow.html
Thinking on using this to wrap a Router (#16), I'm considering how dynamic routes would work. For example, are `/posts/1` and `/posts/2` different states? You don't know all the possible...
I've been reading about Ember's [Router](http://docs.emberjs.com/symbols/Ember.StateManager.html#doc=Ember.Router&src=false) (and [how it works in the context of an application](http://emberjs.com/guides/outlets/)) - any thoughts about how this might interact with the Backbone Router, or if...
Currently, the only options for pagination are [manual](http://octokit.github.io/octokit.rb/#Pagination) and [`auto`](http://octokit.github.io/octokit.rb/#Auto_Pagination), the latter of which will "fetch and concatenate the results from every page into a single array" up front. This...