From 4b7e5e929384cfce78a9ef15fcb0f4dd82c49b38 Mon Sep 17 00:00:00 2001 From: Mikay Gao Date: Wed, 28 Nov 2012 15:04:18 +0800 Subject: [PATCH 1/3] Update README.md I think these two more steps should be clear for newcomers. Please correct me it I am wrong, I am rather new to Meteor. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 03ac304f3..2f421434c 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ Telescope is an open-source, real-time social news site built with [Meteor](http # Installation - Install Meteor - Install [Meteorite](https://github.com/oortcloud/meteorite/) +- Download or clone Telescope into /some/path +- cd /some/path - Run `mrt` # Running Telescope on Heroku From 63e82652b70be32f296ea90dd82671cbd5c13bfa Mon Sep 17 00:00:00 2001 From: Amjad Masad Date: Thu, 29 Nov 2012 01:02:25 -0500 Subject: [PATCH 2/3] Add post button to mobile nav. --- client/views/common/mobile_nav.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/views/common/mobile_nav.html b/client/views/common/mobile_nav.html index 70b76c48f..1fcfbbd01 100644 --- a/client/views/common/mobile_nav.html +++ b/client/views/common/mobile_nav.html @@ -10,6 +10,9 @@
  • Settings
  • Admin
  • {{/if}} + {{#if canView}} +
  • Post
  • + {{/if}} From 7665a1be797590aca88d5f5b08a51b4df0447d71 Mon Sep 17 00:00:00 2001 From: Tom Kruijsen Date: Mon, 3 Dec 2012 17:36:47 +0100 Subject: [PATCH 3/3] Use generic getAvatarUrl instead of Gravatar. --- client/views/comments/comment_item.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/views/comments/comment_item.js b/client/views/comments/comment_item.js index 09daad7c9..caab18fb3 100644 --- a/client/views/comments/comment_item.js +++ b/client/views/comments/comment_item.js @@ -138,10 +138,7 @@ Template.comment_item.rendered=function(){ var user=Meteor.users.findOne(comment.userId); var author=getDisplayName(user); - var imgURL=Gravatar.getGravatar(user, { - d: 'http://telesc.pe/img/default_avatar.png', - s: 30 - }); + var imgURL=getAvatarUrl(user); var $container=findQueueContainer($comment); var comment_link='
  • '+author+'
  • '; if(this.firstRender){