Query-String support in Ember Router

It does :slight_smile: it is called queryParams, and you use it to specify all the properties on the controller that are bound to query param changes (and are linkable via link-to / query-params).

App.ThingController = Ember.Controller.extend({
  queryParams: ['foo'],
  foo: 'somedefaultvalue'
});

I’m not sure what we wanna do with isActive… I haven’t yet (re)implemented it yet, might be good to get some feedback until it’s official supported; for now it just doesn’t consider the QPs.