Files
kiss-translator/src/libs/iframe.js

8 lines
232 B
JavaScript
Raw Normal View History

2023-08-26 11:43:00 +08:00
export const isIframe = window.self !== window.top;
export const sendIframeMsg = (action, args) => {
document.querySelectorAll("iframe").forEach((iframe) => {
iframe.contentWindow.postMessage({ action, args }, "*");
});
};