TAPA ELECTROFUSIÓN HDPE-100, PN-16, SDR 11

Especificaciones Técnicas

TAPA ELECTROFUSIÓN HDPE-100, PN-16, SDR 11
DIMENSIÓN CÓDIGO UNIDADES
TAPA 25mm 3900001007-0025 50
TAPA 32mm 3900001007-0032 50
TAPA 40mm 3900001007-0040 50
TAPA 50mm 3900001007-0050 40
TAPA 63mm 3900001007-0063 50
TAPA 75mm 3900001007-0075 36
TAPA 90mm 3900001007-0090 18
TAPA 110mm 3900001007-0110 10
TAPA 125mm 3900001007-0125 5
TAPA 160mm 3900001007-0160 4
TAPA 200mm 3900001007-0200 2
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(); });