Vulcan/client/views/notifications.js

8 lines
192 B
JavaScript
Raw Normal View History

2012-10-04 11:17:57 +10:00
Template.notifications.helpers({
notifications: function(){
var user=Meteor.user();
console.log(Meteor.user());
if(!user.loading)
return user.profile.notifications;
}
});