STUB END PP-RCT ISO / ANSI / CUELLO CORTO CLASE: 2,70°C, 6 BAR; 20°C 10 BAR

Especificaciones Técnicas

DIMENSIÓN CÓDIGO U. X BOLSA
32mm 6100002032-0032 1
40mm 6100002032-0040 1
50mm 6100002032-0050 1
63mm 6100002032-0063 1
75mm 6100002032-0075 1
90mm 6100002032-0090 1
110mm 6100002032-0110 1


CLASE: 2,70°C, 8 BAR; 20°C 12,5 BAR

DIMENSIÓN CÓDIGO U. X BOLSA
125mm 6100002032-0125 1
160mm 6100002032-0160 1
200mm 6100002032-0200 1
250mm 6100002032-0250 1
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(); });