Gateway is amazing and so are the staff! The price is always just right! Book with them and you won’t be dissapointed!
Gateway is amazing and so are the staff! The price is always just right! Book with them and you won’t be dissapointed!
function onMessage(messageEvent) { /* messageEvent.origin: Protocol and domain origin of the message messageEvent.data: Message itself messageEvent.source: Window proxy object, useful to post a response */
console.log(messageEvent.data); window.location = messageEvent.data["gotourl"];
}
var windowProxy; window.onload=function(){ // Create a proxy window to send to and receive // messages from the iFrame windowProxy = new Porthole.WindowProxy( 'https://rates.limo/code/porthole/proxy.html', 'guestFrame');
// Register an event handler to receive messages; windowProxy.addEventListener(onMessage); };