Query-String support in Ember Router

@machty I get a weird behavior when having hierarchal routes:

Look at: http://jsbin.com/ucanam/2741#

  1. If you hit ‘admin’ you will see the appropriate URL generated with admin.post.index[thing]=nothing but hitting the link will change the url in the browser to: index[thing]=nothing
  2. now the weird behavior begins, if you change the wrong url from index[thing]=nothing to index[thing]=something in the URL it affects the admin.post.route model hook params.thing and for some reason thing becomes the previous value set (look at the alert value), not sure why index receive the value as as it shouldn’t as only admin.post.index bound with query params.

Thanks