Vulcan/client/views/notifications.js
2012-10-04 11:17:57 +10:00

8 lines
No EOL
192 B
JavaScript

Template.notifications.helpers({
notifications: function(){
var user=Meteor.user();
console.log(Meteor.user());
if(!user.loading)
return user.profile.notifications;
}
});