Nubby Cover
Blue
Orange
Yellow
Kick fun into high gear with the Nubby Cover for BOLT+ and BOLT robots. Featuring a textured surface, this cover provides extra grip and enhances traction. While protecting against scratches and scuffs, the Nubby Cover offers additional control to help your robot navigate various terrains.
Note: The use of a Nubby Cover will obstruct the BOLT+/BOLT display.
// Shared SKU Map
var skuMap = {
‚ANC01BL1‘: {
title: ‚vtitle01‘,
subtitle: ‚vsub01‘,
description: ‚vdescr01‘,
included: ‚vwhats01‘
},
‚ANC01OR1‘: {
title: ‚vtitle02‘,
subtitle: ‚vsub02‘,
description: ‚vdescr01‘,
included: ‚vwhats01‘
},
‚ANC01YE1‘: {
title: ‚vtitle03‘,
subtitle: ‚vsub03‘,
description: ‚vdescr01‘,
included: ‚vwhats01‘
},
// Add more mappings as needed
};
// Update title based on SKU
var skuTitleElement = document.querySelector(‚.product-meta__sku-number‘);
var titleElement = document.querySelector(‚.product-meta__title‘);
function updateTitleBasedOnSKU(skuMap) {
var skuNumberTitle = skuTitleElement.textContent.trim();
if (skuMap.hasOwnProperty(skuNumberTitle)) {
var divId = skuMap[skuNumberTitle].title;
var divContent = document.getElementById(divId);
if (divContent) {
titleElement.textContent = divContent.textContent.trim();
var inlineStyles = divContent.getAttribute(’style‘);
titleElement.setAttribute(’style‘, inlineStyles);
divContent.style.display = ‚block‘;
}
}
}
updateTitleBasedOnSKU(skuMap);
// Update subtitle based on SKU
var s





Deutsch
English
Español
Français
Português
Русский
العربية
中文
日本語
한국어
Rezensionen
Es gibt noch keine Rezensionen.