mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:01:08 +08:00
Fix for RN
This commit is contained in:
parent
100985bfdb
commit
0ad1dd957b
@ -11,10 +11,10 @@ let lastArgs;
|
||||
|
||||
const delegateEventSplitter = /^(\S+)\s*(.*)$/;
|
||||
|
||||
const isIE = !Element.prototype.matches;
|
||||
const isIE = Element != null && !Element.prototype.matches;
|
||||
const matchesMethod = isIE ? 'msMatchesSelector' : 'matches';
|
||||
|
||||
const root = document.getElementById('root');
|
||||
const root = document && document.getElementById('root');
|
||||
|
||||
const hasMatchInAncestry = (element, selector) => {
|
||||
if (element[matchesMethod](selector)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user