Skip to content

Commit 2e43a20

Browse files
committed
Removed link to api for git users and replaced with profile link.
1 parent 09788ad commit 2e43a20

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

data.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tweet = require './models/tweet'
44
Message = require './models/message'
55
GitEvent = require './models/gitevent'
66

7-
tenMinutes = 0
7+
tenMinutes = 10 * 60 * 1000
88

99
fetchMessages = cache.for tenMinutes, (cb) ->
1010
Message.load cb

views/layout.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ html(lang="en")
4242
ul.container
4343
each item in gitEvents
4444
li
45-
a(href=item.actor_url, target="_blank")
45+
a(href="http://github.com/" + item.actor, target="_blank")
4646
img(src="https://secure.gravatar.com/avatar/" + item.actor_gravatar_id + "?s=140")
4747
.time= item.timeago
4848
h3= item.actor

0 commit comments

Comments
 (0)