-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strange difference between AppState and Session #4
Comments
This seems to relate to how the various packages manage their startup phases. |
May I see your example of Session working? Because it's not working here: It looks like the first Meteor.startup(function(){
Tracker.autorun(function() {
var template = Session.get('template');
BlazeLayout.render(template);
});
}); I will keep experimenting with this anyway. |
You are right, it doesn't wotk with Session either. Sorry for this. |
For those landing here, the BlazeLayout issue is tracked here. |
No problem :) I will close this, then. |
Consider the following code, using
kadira:flow-router
andkadira:blaze-layout
(you can try it in this meteorPad):This code doesn't work, i.e.
myTemplate
is never rendered.But if you replace
AppState
bySession
, it works correctly.The text was updated successfully, but these errors were encountered: