Skip to content

Commit

Permalink
Merge pull request #139 from gabceb/master
Browse files Browse the repository at this point in the history
Removed reference to cloudfuji profile from JS templates
  • Loading branch information
jrgifford committed Feb 27, 2013
2 parents ff10fba + 18df9fc commit b13494f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Expand Up @@ -6,7 +6,7 @@ class Kandan.Plugins.UserList

@template: _.template '''
<div class="user clearfix">
<img class="avatar" src="http://gravatar.com/avatar/<%= gravatarHash %>?s=25&d=https://cloudfuji.com/images/profile.png"/>
<img class="avatar" src="http://gravatar.com/avatar/<%= gravatarHash %>?s=25"/>
<span class="name"><%= name %></span>
</div>
'''
Expand Down
2 changes: 1 addition & 1 deletion app/assets/templates/activity_base.jst.eco
@@ -1,7 +1,7 @@
<span class="posted_at">
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options.nowThreshold) %>
</span>
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30&d=https://cloudfuji.com/images/profile.png"/>
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30"/>

<div class="readable">
<div class="content">
Expand Down
2 changes: 1 addition & 1 deletion app/assets/templates/current_user.jst.eco
@@ -1,2 +1,2 @@
<img src="http://gravatar.com/avatar/<%= @gravatarHash %>?s=25&d=http://cloudfuji.com/images/profile.png"/>
<img src="http://gravatar.com/avatar/<%= @gravatarHash %>?s=25"/>
<span><%= @name %></span>
2 changes: 1 addition & 1 deletion app/assets/templates/message.jst.eco
@@ -1,7 +1,7 @@
<span class="posted_at">
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options.nowThreshold) %>
</span>
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30&d=https://cloudfuji.com/images/profile.png"/>
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30"/>

<div class="readable">
<span class="user">
Expand Down
2 changes: 1 addition & 1 deletion app/assets/templates/user_notification.jst.eco
@@ -1,7 +1,7 @@
<span class="posted_at">
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options.nowThreshold) %>
</span>
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30&d=https://cloudfuji.com/images/profile.png"/>
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30"/>

<div class="readable">
<span class="user">Kandan bot</span>
Expand Down

0 comments on commit b13494f

Please sign in to comment.