Skip to content

Commit 8b3e706

Browse files
committed
chore: add example to throw in popup
1 parent c7b5e05 commit 8b3e706

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

packages/js/examples/chrome-extension/button.css

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
button {
2+
cursor: pointer;
23
height: 30px;
34
width: 30px;
45
outline: none;
@@ -10,4 +11,9 @@ button {
1011
button.current {
1112
box-shadow: 0 0 0 2px white,
1213
0 0 0 4px black;
13-
}
14+
}
15+
16+
button#throwError {
17+
width: 60px;
18+
height: 50px;
19+
}

packages/js/examples/chrome-extension/popup.html

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
</head>
88
<body>
99
<button id="changeColor"></button>
10+
<br/>
11+
<br/>
12+
<button id="throwError">Throw error</button>
1013
<script src="popup.js"></script>
1114
</body>
1215
</html>

packages/js/examples/chrome-extension/popup.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Initialize button with user's preferred color
2-
let changeColor = document.getElementById('changeColor');
2+
const changeColor = document.getElementById('changeColor');
33

44
chrome.storage.sync.get('color', ({ color }) => {
55
changeColor.style.backgroundColor = color;
@@ -21,4 +21,11 @@ function setPageBackgroundColor() {
2121
chrome.storage.sync.get('color', ({ color }) => {
2222
document.body.style.backgroundColor = color;
2323
});
24-
}
24+
}
25+
26+
// Button to throw an error and have it reported on Honeybadger
27+
const throwError = document.getElementById('throwError');
28+
throwError.addEventListener('click', async () => {
29+
// eslint-disable-next-line no-undef
30+
someUndefinedFunction();
31+
});

0 commit comments

Comments
 (0)