Skip to content

Commit

Permalink
Removing all references of cloudfuji profile icon from js templates
Browse files Browse the repository at this point in the history
  • Loading branch information
gabceb committed Feb 27, 2013
1 parent ff10fba commit 18df9fc
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 18df9fc

Please sign in to comment.