Skip to content

Commit

Permalink
Remove console.log from the front page (#7977)
Browse files Browse the repository at this point in the history
  • Loading branch information
sookcha authored and SimenB committed Feb 25, 2019
1 parent 1d3abb3 commit 086766d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
- `[jest-transform]` Normalize config and remove unecessary checks, convert `TestUtils.js` to TypeScript ([#7801](https://github.com/facebook/jest/pull/7801))
- `[jest-worker]` Fix `jest-worker` when using pre-allocated jobs ([#7934](https://github.com/facebook/jest/pull/7934))
- `[jest-changed-files]` Fix `getChangedFilesFromRoots` to not return parts of the commit messages as if they were files, when the commit messages contained multiple paragraphs ([#7961](https://github.com/facebook/jest/pull/7961))
- `[static]` Remove console log '-' on the front page

### Chore & Maintenance

Expand Down
1 change: 0 additions & 1 deletion website/static/landing.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ document.addEventListener('DOMContentLoaded', () => {
// JS. Let's call it progressive enhancement, sure.
function makeScreenshotsClickable() {
document.querySelectorAll('.blockImage img').forEach(img => {
console.log('-');
img.style.cursor = 'pointer';
img.onclick = () => {
document.location = img.src;
Expand Down

0 comments on commit 086766d

Please sign in to comment.