1 2 3 4 5 6 7 8 9
const { SUCCESS_PAGE_MESSAGE } = require( './constants.js' ); if ( window.opener ) { window.opener.postMessage( SUCCESS_PAGE_MESSAGE, window.origin ); } if ( window.parent ) { window.parent.postMessage( SUCCESS_PAGE_MESSAGE, window.origin ); }