Hello everybody!
Great package!
I noticed a weird behavior. I have a content-less route:
FlowRouter.route('/', {
name: 'home',
action: function() {
BlazeLayout.render('mainLayout');
}
});
Anyhow when I try
It returns errors about content being null unless I edit my original route:
BlazeLayout.render('mainLayout', {content: ''});
I blame this on javascript for being so forgiving in the data it let pass through. Damn I never thought I would miss strong typed languages.
Hello everybody!
Great package!
I noticed a weird behavior. I have a content-less route:
Anyhow when I try
It returns errors about content being null unless I edit my original route:
I blame this on javascript for being so forgiving in the data it let pass through. Damn I never thought I would miss strong typed languages.