Closed billyvg closed 8 years ago
If you click on an link inside of your application, the browser's URL doesn't get updated until the route is finished rendering, it seems.
Example:
http://localhost/
http://localhost/route
FlowRouter.setParams({ id: 123 })
What happens in your browser's address bar is:
http://localhost/route/123
This is a known issues and fixed in the next major version 4.0, which is scheduled for end of this month.
If you click on an link inside of your application, the browser's URL doesn't get updated until the route is finished rendering, it seems.
Example:
http://localhost/
http://localhost/route
FlowRouter.setParams({ id: 123 })
What happens in your browser's address bar is:
http://localhost/
(initial location)http://localhost/route
(click)http://localhost/route/123
(template updates parameter)http://localhost/route
(??)