Skip to content

Commit b21f5f4

Browse files
committed
Add tooltip to close button
1 parent ae5bb83 commit b21f5f4

File tree

1 file changed

+3
-2
lines changed
  • packages/react-error-overlay/src/components

1 file changed

+3
-2
lines changed

packages/react-error-overlay/src/components/close.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
import { applyStyles } from '../utils/dom/css';
33
import { hintsStyle, hintStyle, closeButtonStyle } from '../styles';
44

5-
function createHint(document: Document, hint: string) {
5+
function createHint(document: Document, hint: string, title: string) {
66
const span = document.createElement('span');
77
span.appendChild(document.createTextNode(hint));
8+
span.setAttribute('title', title);
89
applyStyles(span, hintStyle);
910
return span;
1011
}
@@ -14,7 +15,7 @@ function createClose(document: Document, callback: CloseCallback) {
1415
const hints = document.createElement('div');
1516
applyStyles(hints, hintsStyle);
1617

17-
const close = createHint(document, '×');
18+
const close = createHint(document, '×', 'Click or press Escape to dismiss.');
1819
close.addEventListener('click', () => callback());
1920
applyStyles(close, closeButtonStyle);
2021
hints.appendChild(close);

0 commit comments

Comments
 (0)