Excellent service and extremely timely. The driver was sure to fulfill personal requests and followed through with attention to detail.
Excellent service and extremely timely. The driver was sure to fulfill personal requests and followed through with attention to detail.
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); };