Blomberg Oven (may 2022)

1 Condo
Sort by:

Compare listings

Compare
// TREB IMAGE LOADER FIX function fixTrebImages() { document.querySelectorAll('.listing-thumb[src*="treb"]').forEach(img => { const container = img.closest('.listing-thumb-wrap'); if (container) { container.style.height = '260px'; container.style.minHeight = '260px'; if (img.complete) { container.style.background = 'none'; } else { img.onload = function() { container.style.background = 'none'; }; } } }); } // RUN ON LOAD AND AFTER AJAX document.addEventListener('DOMContentLoaded', fixTrebImages); window.addEventListener('ajaxComplete', fixTrebImages);