AISLANTE TÉRMICO DE ESPUMA ELASTOMÉRICA CELDA CERRADA EN TUBOS

Categoría:

Especificaciones Técnicas

Diámetro tubería de PP en mm Espesor en mm D. Interior en mm D. Exterior en mm Largo Presentación CÓDIGOS
16 9 18 36 2 2500002000-0016
20 9 20 38 2 2500002000-0020
25 13 28 54 2 2500002000-0025
32 13 35 61 2 2500002000-0032
40 13 42 68 2 2500002000-0040
50 19 54 92 2 2500002000-0050
63 19 64 102 2 2500002000-0063
63 25 64 114 2 2500002000-0163
75 25 76 126 2 2500002000-0075
90 25 89 140 2 2500002000-0090
110 25 114 164 2 2500002000-0110
const registerAllyAction = () => { if ( ! window?.elementorAppConfig?.hasPro || ! window?.elementorFrontend?.utils?.urlActions ) { return; } elementorFrontend.utils.urlActions.addAction( 'allyWidget:open', () => { if ( window?.ea11yWidget?.widget?.open ) { window.ea11yWidget.widget.open(); } } ); }; const waitingLimit = 30; let retryCounter = 0; const waitForElementorPro = () => { return new Promise( ( resolve ) => { const intervalId = setInterval( () => { if ( retryCounter === waitingLimit ) { resolve( null ); } retryCounter++; if ( window.elementorFrontend && window?.elementorFrontend?.utils?.urlActions ) { clearInterval( intervalId ); resolve( window.elementorFrontend ); } }, 100 ); // Check every 100 milliseconds for availability of elementorFrontend }); }; waitForElementorPro().then( () => { registerAllyAction(); });