Vulcan/packages/custom/lib/client/templates/hello.js

9 lines
168 B
JavaScript
Raw Normal View History

2015-05-11 12:39:32 +09:00
Template.hello.helpers({
name: function () {
if (Meteor.user()) {
return Users.getDisplayName(Meteor.user());
} else {
return "You";
}
}
});