﻿$(function () {
    setTimeout(function () {
        loadOfferListImages();
    }, 0);

    $('[data-toggle="tooltip"]:not(.tooltipstered)').tooltipster({
        maxWidth: 350
    });
});

function loadOfferListImages() {
    $('[data-offer-list-img="true"]').each(function () {
        this.onerror = function () {
            this.src = window.noImageSrc;
            this.onerror = null;
        }
        this.src = this.dataset.src;
        this.dataset.offerListImg = false;
    });
}