@@ -94,33 +94,33 @@ var GitHub = (function () {
9494 '</a>' +
9595 '</div>' +
9696 '<div class="gt-act-cnt">' +
97- '<%= message%>' +
97+ '<%= userLink%>' + '<%= message%>'+
9898 '</div>' +
9999 '<div title="<%= created_at%>" class="gt-time-cnt"><div class="gt-time-str"><%= timeString%></div></div>' +
100100 '<div class="gt-clearfix"></div>' +
101101 '</div>' ,
102- CommitCommentEvent :'<%= userLink%> < span> commented on commit </span> < %= commentLink%>' +
102+ CommitCommentEvent :'<span> commented on commit <%= commentLink%> </span >' +
103103 '<p><%= payload.comment.body%></p>' ,
104- CreateEvent : '<%= userLink%> < span> created <%= payload.ref_type%> </span> < %= branchLink%> <span> at </span>< %= repoLink%>' ,
105- DeleteEvent : '<%= userLink%> < span> deleted </span> < %= payload.ref%> <%= payload.ref_type%> <span> at </span>< %= repoLink%>' ,
106- ForkEvent : '<%= userLink%> < span> forked </span> < %= repoLink%> <span> to </span>< %= forkLink%>' ,
107- GollumEvent : '<%= userLink%> < span> <%= actionType%> the <%= repoLink%> wiki</span>' +
104+ CreateEvent : '<span> created <%= payload.ref_type%> <%= branchLink%> at <%= repoLink%> </span >' ,
105+ DeleteEvent : '<span> deleted <%= payload.ref%> <%= payload.ref_type%> at <%= repoLink%> </span >' ,
106+ ForkEvent : '<span> forked <%= repoLink%> to <%= forkLink%> </span >' ,
107+ GollumEvent : '<span> <%= actionType%> the <%= repoLink%> wiki</span>' +
108108 '<p><%= wikiMessage%></p>' ,
109- IssueCommentEvent : '<%= userLink%> < span> commented on issue </span> < %= commentLink%>' +
109+ IssueCommentEvent : '<span> commented on issue <%= commentLink%> </span >' +
110110 '<p><%= payload.comment.body%></p>' ,
111- IssuesEvent : '<%= userLink%> < span> <%= payload.action%> issue </span> < %= issueUrl%>' ,
112- MemberEvent : '<%= userLink%> < span> added </span> < %= memberLink%> to <%= repoLink%>' ,
113- PublicEvent : '<%= userLink%> < span> open sourced </span> < %= repoLink%>' ,
114- PullRequestEvent : '<%= userLink%> < span> <%= payload.action%> pull request </span> < %= mergeRequestUrl%>' +
111+ IssuesEvent : '<span> <%= payload.action%> issue <%= issueUrl%> </span >' ,
112+ MemberEvent : '<span> added <%= memberLink%> to <%= repoLink%> </span >' ,
113+ PublicEvent : '<span> open sourced <%= repoLink%> </span >' ,
114+ PullRequestEvent : '<span> <%= payload.action%> pull request <%= mergeRequestUrl%> </span >' +
115115 '<p><%= payload.pull_request.title%></p>' +
116116 '<p class="pull-req-info"><%= payload.pull_request.commits%> commits with <%= payload.pull_request.changed_files%> files changed.</p>' ,
117- PullRequestReviewCommentEvent : '<%= userLink%> < span> commented on pull request </span> < %= pullCommentUrl%>' +
117+ PullRequestReviewCommentEvent : '<span> commented on pull request <%= pullCommentUrl%> </span >' +
118118 '<p><%= payload.comment.body%></p>' ,
119- PushEvent : '<%= userLink%> < span> pushed to </span> < %= branchLink%> <span> at </span> < %= repoLink%>' +
119+ PushEvent : '<span> pushed to <%= branchLink%> at <%= repoLink%> </span >' +
120120 '<%= commitsHtml%>' ,
121- ReleaseEvent : '<%= userLink%> < span> released </span> < %= tagLink%> <span> at </span> < %= repoLink%>' +
121+ ReleaseEvent : '<span> released <%= tagLink%> at <%= repoLink%> </span >' +
122122 '<br><%= zipLink%>' ,
123- WatchEvent : '<%= userLink%> < span> starred </span> < %= repoLink%>' ,
123+ WatchEvent : '<span> starred <%= repoLink%> </span >' ,
124124 noActivityTpl : '<div class="gt-no-activity">' +
125125 '<span> There are no public events for this account in past 90 days. </span>' +
126126 '</div>'
@@ -264,7 +264,7 @@ var GitHub = (function () {
264264 var content , data , request ;
265265 request = new XMLHttpRequest ( ) ;
266266 request . open ( 'GET' , url , false ) ;
267-
267+
268268 request . onload = function ( e ) {
269269 if ( request . status >= 200 && request . status < 400 ) {
270270 data = JSON . parse ( request . responseText ) ;
0 commit comments