Skip to content
This repository was archived by the owner on Dec 4, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
verJson.sort(function(a, b) {
return a.time.getTime() - b.time.getTime();
}).sort(function(a, b) {
return -1 // this is a really stupid method right?
return -1 // This is a really stupid method right?
}).forEach(element => {
$("#tbody").append('<tr><td><a href="' + element.link + '"style="color:#FFFFFF">' + element.sha.substring(0, 7) + '</a></td><td>' + element.time.toLocaleString() + '</td><td>' + element.msg + '</td><td><a href="' + element.download_link + '"style="color:#7289da">Download</a></td></tr>')
})
Expand All @@ -141,7 +141,7 @@
return "rgb(" + r + ',' + g + ',' + b + ")";
}

// this seems not working
// This seems to not be working.
rainbow();

function rainbow() {
Expand Down