UNPKG

slightning-coco-widget--webpack

Version:

SLIGHTNING 的 CoCo 控件框架 —— webpack 相关工具。

19 lines (18 loc) 734 B
export function getIFrameWindow() { if (window.__slightning_coco_widget_iframe_window__ == null) { var iframeElement = document.createElement("iframe"); iframeElement.sandbox.add("allow-same-origin"); iframeElement.src = location.href; iframeElement.style.display = "none"; document.body.appendChild(iframeElement); Object.defineProperty(window, "__slightning_coco_widget_iframe_window__", { value: iframeElement.contentWindow, enumerable: false, configurable: false }); } return window.__slightning_coco_widget_iframe_window__; } export function getIFrameWindowVar(name) { return getIFrameWindow()[name.replace(/_/g, "")]; }