Skip to content

Commit b13494f

Browse files
committed
Merge pull request DamageLabs#139 from gabceb/master
Removed reference to cloudfuji profile from JS templates
2 parents ff10fba + 18df9fc commit b13494f

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
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="proxy.php?url=http%3A%2F%2Fgravatar.com%2Favatar%2F%26lt%3B%25%3D+gravatarHash+%25%26gt%3B%3Fs%3D25%3Cspan+class%3D"x x-first x-last">&d=https://cloudfuji.com/images/profile.png"/>
9+
<img class="avatar" src="proxy.php?url=http%3A%2F%2Fgravatar.com%2Favatar%2F%26lt%3B%25%3D+gravatarHash+%25%26gt%3B%3Fs%3D25"/>
1010
<span class="name"><%= name %></span>
1111
</div>
1212
'''

app/assets/templates/activity_base.jst.eco

Lines changed: 1 addition & 1 deletion
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">
Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)