Hoppa till innehåll
if (window.location.hostname.endsWith('sporttema.se')) {
var logoDiv = document.getElementById('aaa_logo');
var trustpilotContainer = document.getElementById('trustpilot-container');
if (trustpilotContainer) {
trustpilotContainer.style.display = 'block';
}
if (logoDiv) {
logoDiv.style.display = 'block';
}
}
if (window.location.hostname.endsWith('sporttema.no')) {
var trustpilotNo = document.getElementById('trustpilot-no');
if (trustpilotNo) {
trustpilotNo.style.display = 'block';
}
}
setTimeout(() => {
if (document.querySelector('.accordion')) {
let egenskap = document.querySelector('.accordion-button[aria-label="Egenskaper"]');
if (egenskap) {
egenskap.click();
}
let reviewBtn = document.querySelector('#product-reviews.accordion-button');
if (reviewBtn) {
reviewBtn.click();
}
}
}, 1000);