Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(@clayui/tooltip): add polyfill for element.matches #3007

Merged
merged 1 commit into from
Mar 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/clay-tooltip/src/TooltipProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,15 @@ const reducer = (state: IState, {type, ...payload}: IAction): IState => {
}
};

// Polyfill to account for any browsers that might not support `element.matches`.
// Need to make sure window exists first since this can be run server side.
if (typeof window !== 'undefined' && !Element.prototype.matches) {
Element.prototype.matches =
// @ts-ignore
Element.prototype.msMatchesSelector ||
Element.prototype.webkitMatchesSelector;
}

function closestAncestor(node: HTMLElement, s: string) {
const el = node;
let ancestor: HTMLElement | null = node;
Expand Down