Air/Brake Valves
';
function getOptions(s) {
return s.map((i) => {
return '
';
}).join('')
}
render(template, document.querySelector('#sortByContainer'));
document.querySelector('#vendorFilterContainer #vendor-filter').addEventListener('change', function(e) {
const pathSegments = window.location.pathname.split('/').filter(Boolean);
let pathName = '';
if(pathSegments.length && pathSegments[0] === "collections") {
if(this.value === "all_vendors") {
pathName = '/' + pathSegments[0] + '/' + pathSegments[1];
} else {
pathName = '/' + pathSegments[0] + '/' + pathSegments[1] + '/' + this.value;
}
}
window.location.href = window.location.origin + pathName + window.location.search;
});