No Results Found
The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.
The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.
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); };