Merge pull request #3 from michalsvec/patch-1

changed updated_at to pushed_at
This commit is contained in:
Samar Dhwoj Acharya 2017-11-28 10:43:28 -06:00 committed by GitHub
commit 39d4603f56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ function showData(data) {
<th><i class="fa fa-github" aria-hidden="true"></i> Repository</th>
<th><i class="fa fa-star" aria-hidden="true"></i> Stargazers</th>
<th><i class="fa fa-code-fork" aria-hidden="true"></i> Forks</th>
<th><i class="fa fa-clock-o" aria-hidden="true"></i> Last Update</th>
<th><i class="fa fa-clock-o" aria-hidden="true"></i> Last Push</th>
</tr>
</thead>
`;
@ -86,7 +86,7 @@ function showData(data) {
<td><a href="${fork.html_url}">${fork.full_name}</a></td>
<td>${fork.stargazers_count}</td>
<td>${fork.forks_count}</td>
<td>${timeSince(fork.updated_at)} ago</td>
<td>${timeSince(fork.pushed_at)} ago</td>
</tr>
`;
html.push(item);