8 lines
169 B
JavaScript
8 lines
169 B
JavaScript
|
|
// General use helpers - available to all views.
|
|
|
|
UI.registerHelper('currentUserName', function() {
|
|
if(Meteor.user()){
|
|
return Meteor.user().emails[0].address;
|
|
}
|
|
}); |