Here is my map with the Porto places I visited in my show ‘Bom Dia Anne’, plus some others I recommend.
function setIframeAutoHeight_62eb52ff0a786( myIFrame ) {
let resizeIFrame = function(iframe, scroll_height){
if(iframe) {
$(iframe).removeAttr( ‘height’ );
$(iframe).attr( ‘scrolling’, ‘no’ );
$(iframe).css( ‘height’, ‘auto’ );
iframe.style.height = scroll_height + ‘px’;
}
};
window.addEventListener(‘message’, function(e) {
resizeIFrame(document.getElementById(e.data.iframeid), e.data.iframeheight);
}, false);
myIFrame.contentWindow.postMessage({ iframeid: myIFrame.id }, « * »);
}
The post My Porto Map appeared first on Anne's Kitchen.