2012-09-24 22:27:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
Template.user_profile.user = function(){
|
|
|
|
if(window.selected_user_id){
|
|
|
|
return Meteor.users.findOne(window.selected_user_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Template.user_profile.avatar_url = function(){
|
|
|
|
return Gravatar.getGravatar(this, {
|
|
|
|
d: 'http://telescope.herokuapp.com/img/default_avatar.png',
|
|
|
|
s: 80
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Template.user_profile.created_at_formatted = Template.user_item.created_at_formatted;
|
|
|
|
|
|
|
|
Template.user_profile.is_current_user = function(){
|
2012-09-26 17:14:17 -07:00
|
|
|
return Meteor.user() && (window.selected_user_id === Meteor.user()._id);
|
2012-09-24 22:27:29 +02:00
|
|
|
}
|