TEE Y TEE RED, SANITARIOS BLANCO

Categorías: ,

Especificaciones Técnicas

DIMENSIÓN CÓDIGO UNIDADES CAJA UNIDADES BOLSA
TEE 87,3° D/d 40/40 9300005000-0040 60 20
TEE 87,3° D/d 50/50 9300005000-0050 50 25
TEE 87,3° D/d 75/40 9300005000-0740 20
TEE 87,3° D/d 75/50 9300005000-0750 20
TEE 87,3° D/d 75/75 9300005000-0075 14
TEE 87,3° D/d 110/40 9300005000-1104 12
TEE 87,3° D/d 110/50 9300005000-1105 12
TEE 87,3° D/d 110/75 9300005000-1107 8
TEE 87,3° D/d 110/110 9300005000-0110 6
TEE 87,3° D/d 160/110 9300005000-1611 1
TEE 87,3° D/d 160/160 9300005000-0160
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(); });