File tree 3 files changed +19
-3
lines changed
packages/js/examples/chrome-extension
3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1
1
button {
2
+ cursor : pointer;
2
3
height : 30px ;
3
4
width : 30px ;
4
5
outline : none;
@@ -10,4 +11,9 @@ button {
10
11
button .current {
11
12
box-shadow : 0 0 0 2px white,
12
13
0 0 0 4px black;
13
- }
14
+ }
15
+
16
+ button # throwError {
17
+ width : 60px ;
18
+ height : 50px ;
19
+ }
Original file line number Diff line number Diff line change 7
7
</ head >
8
8
< body >
9
9
< button id ="changeColor "> </ button >
10
+ < br />
11
+ < br />
12
+ < button id ="throwError "> Throw error</ button >
10
13
< script src ="popup.js "> </ script >
11
14
</ body >
12
15
</ html >
Original file line number Diff line number Diff line change 1
1
// Initialize button with user's preferred color
2
- let changeColor = document . getElementById ( 'changeColor' ) ;
2
+ const changeColor = document . getElementById ( 'changeColor' ) ;
3
3
4
4
chrome . storage . sync . get ( 'color' , ( { color } ) => {
5
5
changeColor . style . backgroundColor = color ;
@@ -21,4 +21,11 @@ function setPageBackgroundColor() {
21
21
chrome . storage . sync . get ( 'color' , ( { color } ) => {
22
22
document . body . style . backgroundColor = color ;
23
23
} ) ;
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
+ } ) ;
You can’t perform that action at this time.
0 commit comments