Skip to content

Commit b3be68b

Browse files
committed
Merge branch 'master' of github.com:nodekc/website
2 parents faada32 + f06bd5d commit b3be68b

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

models/tweet.coffee

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ twitter_feed_url = 'http://search.twitter.com/search.json?q=%40nodekc&rpp=5&incl
66

77
Tweet = (data) ->
88
this.created_by = data.from_user
9-
console.log data
10-
this.tweet = twitter.autoLink data.text, urlEntities: data.entities.urls
9+
this.tweet = twitter.autoLink data.text, { urlEntities: data.entities.urls, urlClass: 'tweet-url' }
1110
this.timeago = moment(new Date(data.created_at)).fromNow()
1211
this.created_at = data.created_at
1312
return

public/css/app.styl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@ form.join
119119
color #9DD95C
120120
.time
121121
color #999
122+
123+
a.tweet-url
124+
color #8CC84B
125+
122126
.more
123127
a
124128
text-align center

0 commit comments

Comments
 (0)