Produkteigenschaften:
Bearbeiten modernster Lacksysteme
Besonders empfohlen für VOC-Lacke
Bearbeiten härtester Untergründe
Bearbeiten von Kunststoffen, Mineralwerkstoffen, Acryl, Spachtel, Füller
Passend für RO 150, ES 150, ETS 150, ETS EC 150, LEX 150, WTS 150, HSK-D 150
Technische Daten:
KörnungP60
Durchmesser150 mm
Gewicht (inkl. Verpackung)0.578 kg
Länge (inkl. Verpackung)0.17 m
Höhe (inkl. Verpackung)0.08 m
Breite (inkl. Verpackung)0.16 m
Lieferumfang:
1x Festool Schleifscheibe STF D150/48 P60 GR/50 Granat - 50 Stück
- Hersteller
- Festool GmbH
-
Wertstr. 20,
70327 Wendlingen am Neckar,
Deutschland
Festool Schleifscheibe STF D150/48 P60 GR/50 Granat
- Artikel-Nr.: 575161
- EAN: 4014549297322
- Hersteller: FESTOOL

const observer = new MutationObserver(() => {
const el = document.getElementById("delivery-date-template");
if (el) {
el.innerHTML = el.innerHTML.replace(
"Lieferung:",
"Lieferung:"
);
observer.disconnect();
clearTimeout(timeoutId);
}
});
observer.observe(document.body, { childList: true, subtree: true });
const timeoutId = setTimeout(() => observer.disconnect(), 2000);
DHL Paket Template "PayPal::Widgets.InstallmentTextBannerWidget" not found
Template "AmazonPayCheckout::content.article_checkout_button" not found
- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
$(document).ready(function() {
setTimeout(function () {
if (
window.innerWidth < 1200 &&
$('#m1').length &&
$('#mM').length &&
$('#m1').is(':empty')
) {
$('#mM').appendTo('#m1');
}
}, 1000);
$( window ).resize(function() {
if ($(window).outerWidth() < 1200 ) {
$('#mM').appendTo('#m1');
} else {
$('#mM').appendTo('#m2');
}
});
});
$(function () {
const $links = $('.anchors a');
const nav = document.querySelector('.anchors');
function updateActiveLink() {
const scrollTop = $(document).scrollTop();
$links.each(function (i, link) {
const targetId = $(link).attr('href');
const $target = $(targetId);
if (!$target.length) return;
const top = $target.offset().top;
let bottom;
if (i < $links.length - 1) {
const nextLinkHref = $($links[i + 1]).attr('href');
const $nextTarget = $(nextLinkHref);
bottom = $nextTarget.length ? $nextTarget.offset().top : $(document).height();
} else {
bottom = $(document).height();
}
if (scrollTop >= top - 120 && scrollTop < bottom - 120) {
$links.removeClass('active');
$(link).addClass('active');
scrollNavToLink(link);
return false; // break .each()
}
});
}
function scrollNavToLink(link) {
if (!nav) return;
const linkLeft = link.offsetLeft;
const linkWidth = link.offsetWidth;
const navWidth = nav.offsetWidth;
const scrollTo = linkLeft - (navWidth / 2) + (linkWidth / 2);
nav.scrollTo({ left: scrollTo, behavior: 'smooth' });
}
let scrollTimer;
$(document).on('scroll', function () {
updateActiveLink(); // run immediately
clearTimeout(scrollTimer);
scrollTimer = setTimeout(updateActiveLink, 100); // trailing update
});
updateActiveLink(); // on load
});