Condividete la vostra esperienza

MANDA UN MESSAGGIO AGLI ALTRI CHEF DI TUTTO IL MONDO

Condividi un messaggio con noi e la comunità internazionale di Chef per farci sapere che stai bene e raccontarci cosa stai facendo in questo periodo.  Raccontaci su cosa stai lavorando e quali piani hai per il futuro. O semplicemente manda un augurio agli altri Chef vicini a te, nel tuo paese o nel resto del mondo!

Fai sentire la tua voce! Noi condivideremo il tuo messaggio qui.

// modified from same-domain version at www.dyn-web.com/tutorials/iframes/height/ function setIframeHeightCO(id, ht) { console.log(ht); var ifrm = document.querySelectorAll("iframe.field-iframe-instance")[0]; ifrm.style.visibility = 'hidden'; // some IE versions need a bit added or scrollbar appears ifrm.style.height = ht + 4 + "px"; ifrm.style.visibility = 'visible'; } // iframed document sends its height using postMessage function handleDocHeightMsg(e) { // check origin if ( e.origin === 'http://web.barry-callebaut.com.com' ) { // parse data var data = JSON.parse( e.data ); // check data object if ( data['docHeight'] ) { console.log(data['docHeight']); setIframeHeightCO( 'ifrm', data['docHeight'] ); } else if ( data['href'] ) { setIframe('ifrm', data['href'] ); } } } // assign message handler if ( window.addEventListener ) { window.addEventListener('message', handleDocHeightMsg, false); } else if ( window.attachEvent ) { // ie8 window.attachEvent('onmessage', handleDocHeightMsg); }