Spaces:
Running
Running
File size: 365 Bytes
9509f5b | 1 2 3 4 5 6 7 8 9 10 | /**
* Posts a message to the parent window if it exists
* @param message - The message to send to the parent window
*/
export function postMessageToParentWindow(message: unknown) {
const parentWindow = self.parent;
const targetOrigin = parentWindow?.[0]?.location?.ancestorOrigins?.[0];
if (targetOrigin) parentWindow.postMessage(message, targetOrigin);
}
|