|
@@ -350,7 +350,8 @@
|
|
|
layoutDropdown,
|
|
|
pendingCalls = {},
|
|
|
lastRevealApiCallId = 0,
|
|
|
- connected = false;
|
|
|
+ connected = false,
|
|
|
+ whitelistedWindows = [window.opener];
|
|
|
|
|
|
var SPEAKER_LAYOUTS = {
|
|
|
'default': 'Default',
|
|
@@ -368,8 +369,8 @@
|
|
|
;
|
|
|
window.addEventListener( 'message', function( event ) {
|
|
|
|
|
|
- // Validate the origin of this message to avoid XSS
|
|
|
- if( window.location.origin !== event.origin && event.source !== window.opener ) {
|
|
|
+ // Validate the origin of this message to prevent XSS
|
|
|
+ if( window.location.origin !== event.origin && whitelistedWindows.indexOf( event.source ) === -1 ) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -538,6 +539,8 @@
|
|
|
upcomingSlide.setAttribute( 'src', upcomingURL );
|
|
|
document.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );
|
|
|
|
|
|
+ whitelistedWindows.push( currentSlide.contentWindow, upcomingSlide.contentWindow );
|
|
|
+
|
|
|
}
|
|
|
|
|
|
/**
|