slightning-coco-widget--webpack
Version:
SLIGHTNING 的 CoCo 控件框架 —— webpack 相关工具。
23 lines (22 loc) • 889 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getIFrameWindow = getIFrameWindow;
exports.getIFrameWindowVar = getIFrameWindowVar;
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__;
}
function getIFrameWindowVar(name) {
return getIFrameWindow()[name.replace(/_/g, "")];
}