I want to make this code non reactive. Is there a way?
Template.foo.helpers({
info: function(){
var user = Meteor.user();
if (user && user.profile)
return user.profile.info;
}
});
I know there is a way when you are Foo.find({}, {reactive:false})
I was wondering if there was a equivalent.