Skip to content

Conversation

@jessand77
Copy link

No description provided.

Copy link

@Dopest0727 Dopest0727 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Really cool code and really easy to read, cool features and great use of CSS!

Comment on lines +2 to +8

:root {
--primary: #F5F5F5;
--secondary: #a6c2a7; /* Only used in the chart */
--third: #4D724D;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome! :)

Comment on lines 115 to 120
// This function filters out repos that are forked and start with "project"
const getTechnigoRepos = (repos) => {
return repos
.filter(repo => repo.fork === true && repo.name.startsWith("project"))
};

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good use of comments

code/script.js Outdated
Comment on lines 55 to 64
// Buttons to show or hide commit comments
let showCommitsButton = document.createElement('button');
showCommitsButton.className = 'commits-button';
showCommitsButton.innerHTML = 'Show commits';
repoDivContent.appendChild(showCommitsButton);

let hideCommitsButton = document.createElement('button');
hideCommitsButton.className = 'commits-button';
hideCommitsButton.innerHTML = 'Hide commits';
commitDiv.appendChild(hideCommitsButton);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Really cool feature

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants