Skip to content

Commit 18df9fc

Browse files
committed
Removing all references of cloudfuji profile icon from js templates
1 parent ff10fba commit 18df9fc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

app/assets/javascripts/backbone/plugins/user_list.js.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Kandan.Plugins.UserList
66

77
@template: _.template '''
88
<div class="user clearfix">
9-
<img class="avatar" src="http://gravatar.com/avatar/<%= gravatarHash %>?s=25&d=https://cloudfuji.com/images/profile.png"/>
9+
<img class="avatar" src="http://gravatar.com/avatar/<%= gravatarHash %>?s=25"/>
1010
<span class="name"><%= name %></span>
1111
</div>
1212
'''

app/assets/templates/activity_base.jst.eco

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<span class="posted_at">
22
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options.nowThreshold) %>
33
</span>
4-
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30&d=https://cloudfuji.com/images/profile.png"/>
4+
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30"/>
55

66
<div class="readable">
77
<div class="content">
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<img src="http://gravatar.com/avatar/<%= @gravatarHash %>?s=25&d=http://cloudfuji.com/images/profile.png"/>
1+
<img src="http://gravatar.com/avatar/<%= @gravatarHash %>?s=25"/>
22
<span><%= @name %></span>

app/assets/templates/message.jst.eco

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<span class="posted_at">
22
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options.nowThreshold) %>
33
</span>
4-
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30&d=https://cloudfuji.com/images/profile.png"/>
4+
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30"/>
55

66
<div class="readable">
77
<span class="user">

app/assets/templates/user_notification.jst.eco

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<span class="posted_at">
22
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options.nowThreshold) %>
33
</span>
4-
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30&d=https://cloudfuji.com/images/profile.png"/>
4+
<img class="avatar" src="http://gravatar.com/avatar/<%= @activity.user.gravatar_hash %>?s=30"/>
55

66
<div class="readable">
77
<span class="user">Kandan bot</span>

0 commit comments

Comments
 (0)