Vulcan/client/views/notifications.js
2012-10-04 14:58:53 +09:00

7 lines
No EOL
168 B
JavaScript

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