strangelooper
strangelooper
I'm seeing failing tests just on master itself, I've tried fixing some of those but there's still a few more. When I get some time I'll go back and try...
@rwwagner90 I did see that issue while researching this one. It did fix some of my other ember-redux related issues I saw. Do you want me to create a pr...
Is someone going to reopen this or should we create a new bug report...?
👍 this is the culprit: https://github.com/cibernox/ember-power-calendar/blob/master/index.js#L12 I think maybe we can use `this.ui.writeError` instead of throwing an error? Not a great fix, but I'm not sure if there's an alternative.
Just realized that while my routes and controllers get their paths flattened and converted to long filenames, my templates do not. So `controllers/some/path/foo.js` gets converted to `controllers/some-path-foo.js` but my templates...
Oh, came here for this - the README says compat with 3.12 - but I think 3.15 might be more accurate (since the package.json says ember octane)
:+1: I created two failing tests for this https://github.com/emberjs/ember.js/compare/master...mattmarcum:transition-to-in-before-model-with-query-params-test?expand=1 I went ahead and created failing tests in both the default code path and in the `ember-routing-route-configured-query-params` code path (which you...
This bug is pretty tricky because its caused by interaction between tildeo/router.js and ember.js/route. When router.js is doing a queryParamTransition it generates an empty Transition because it should be a...
Actually that doesn't fix it. Even if you get the `handlerInfos` there's still some problems with getting the controller
This is definitely caused by the fact that `route.setup` has not been called yet, it's not called until after the `beforeModel` hook. `finalizeQueryParams` expects that the route has already been...