I'm navigating between two routes that have the same layoutTemplate
. By default, the layout helpers are not rerun:
http://meteorpad.com/pad/TP6QoWiryAde6du6u/Copy%20of%20IR
However, in my app, they are – even a one-line helper that just calls console.log
. Note that:
onRendered
is not called again. What are the reasons why this could happen?
Taking this out of that single route fixed it!
data: ->
code: @params.code
Replaced with Router.current().data()?.code
in helpers & onRendered
.