aboutsummaryrefslogtreecommitdiffstats
path: root/resources/src/mediawiki.authenticationPopup/success.js
blob: 1f04a730e258857d5533b10fceaafa42802e79ec (plain) (blame)
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 );
}