cosmos-explorer/src/ReactDevTools.ts

8 lines
266 B
TypeScript
Raw Normal View History

2021-01-20 15:15:01 +00:00
if (window.parent !== window) {
try {
(window as any).__REACT_DEVTOOLS_GLOBAL_HOOK__ = (window.parent as any).__REACT_DEVTOOLS_GLOBAL_HOOK__;
} catch {
// No-op. We can throw here if the parent is not the same origin (such as in the Azure portal).
}
2021-01-20 15:15:01 +00:00
}