Also wrap parent frame access in try/catch for vue

This commit is contained in:
Tom Coleman 2018-04-26 12:08:41 +10:00
parent e894c33056
commit 279d4f9e99

View File

@ -2,8 +2,12 @@
import { window } from 'global';
if (window.parent !== window) {
window.__VUE_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__VUE_DEVTOOLS_GLOBAL_HOOK__;
window.parent.__VUE_DEVTOOLS_CONTEXT__ = window.document;
try {
window.__VUE_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__VUE_DEVTOOLS_GLOBAL_HOOK__;
window.parent.__VUE_DEVTOOLS_CONTEXT__ = window.document;
} catch (error) {
// The above lines can throw if we do not have access to the parent frame -- i.e. cross origin
}
}
window.STORYBOOK_REACT_CLASSES = {};