Paul was so wonderful and kind and really made our experience and day the best. So appreciative of everyone who helped with our special day. Thank you!
Paul was so wonderful and kind and really made our experience and day the best. So appreciative of everyone who helped with our special day. Thank you!
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); };