Zwhouse
Нет товаров этого производителя.
';
}
html += '
';
html += '
' + $(element).find('.name').html() + '
';
html += '
' + $(element).find('.description').html() + '
';
var price = $(element).find('.price').html();
if (price != null) {
html += '
' + price + '
';
}
html += '
';
var rating = $(element).find('.rating').html();
if (rating != null) {
html += '
' + rating + '
';
}
html += '
';
html += '
';
$(element).html(html);
});
$('.display').html('
Вид:
');
$.totalStorage('display', 'list');
} else {
$('.product-list').attr('class', 'product-grid');
$('.product-grid ul').addClass('row');
$('.product-grid ul li').addClass('col-sm-4');
$('.product-grid ul li').each(function(index, element) {
html = '';
var image = $(element).find('.image').html();
html += '
';
if (image != null) {
html += '
' + image + '
';
}
html += '
';
html += '
' + $(element).find('.name').html() + '
';
var price = $(element).find('.price').html();
if (price != null) {
html += '
' + price + '
';
}
html += '
' + $(element).find('.description').html() + '
';
html += '
';
var rating = $(element).find('.rating').html();
if (rating != null) {
html += '
' + rating + '
';
}
html += '
';
$(element).html(html);
});
$('.display').html('
Вид:
');
$.totalStorage('display', 'grid');
}
if ($('body').width() > 940) {
// tooltip demo
$('.tooltip-toggle').tooltip({
selector: "a[data-toggle=tooltip]"
})
$('.tooltip-1').tooltip({
placement:'bottom'
})
$('.tooltip-2').tooltip({
placement:'top'
})
}
}
view = $.totalStorage('display');
if (view) {
display(view);
} else {
display('grid');
}
//-->