Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.
Merged
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
9 changes: 1 addition & 8 deletions Week3/MAKEME.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,6 @@ You could use this skeleton as overall design for your code in `app.js`:
fetchContributors() {
// Add your code here
}

/**
* Returns the name of the repository
*/
name() {
// Add your code here
}
}

class Contributor {
Expand Down Expand Up @@ -163,7 +156,7 @@ You could use this skeleton as overall design for your code in `app.js`:
}
}

window.onload = new View();
window.onload = () => new View();
}
```

Expand Down