Adaptateur d'entonnoir et joint torique pour freins à disque hydrauliques sur gravier et route
Permet un positionnement correct de l'entonnoir pour une purge sans problème
Convient à tous les leviers de frein et disques de route Shimano de la génération actuelle, y compris Dura Ace ST-R9120 et ST-R9170, Ultegra ST-R8020, ST-R8025 et ST-R8070, 105 ST-R7020 et ST-R7025, Tiagra ST- 4720 et ST-4725, GRX ST-RX815, ST-RX810 et BL-RX810, ST-RX600 et ST-RX400
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}