File tree 1 file changed +3
-2
lines changed
packages/react-error-overlay/src/components
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 2
2
import { applyStyles } from '../utils/dom/css' ;
3
3
import { hintsStyle , hintStyle , closeButtonStyle } from '../styles' ;
4
4
5
- function createHint ( document : Document , hint : string ) {
5
+ function createHint ( document : Document , hint : string , title : string ) {
6
6
const span = document . createElement ( 'span' ) ;
7
7
span . appendChild ( document . createTextNode ( hint ) ) ;
8
+ span . setAttribute ( 'title' , title ) ;
8
9
applyStyles ( span , hintStyle ) ;
9
10
return span ;
10
11
}
@@ -14,7 +15,7 @@ function createClose(document: Document, callback: CloseCallback) {
14
15
const hints = document . createElement ( 'div' ) ;
15
16
applyStyles ( hints , hintsStyle ) ;
16
17
17
- const close = createHint ( document , '×' ) ;
18
+ const close = createHint ( document , '×' , 'Click or press Escape to dismiss.' ) ;
18
19
close . addEventListener ( 'click' , ( ) => callback ( ) ) ;
19
20
applyStyles ( close , closeButtonStyle ) ;
20
21
hints . appendChild ( close ) ;
You can’t perform that action at this time.
0 commit comments