TEST. NOVIST. Главная

Название : TEST. NOVIST. Главная
Шаблон : TEST. NOVIST
Ссылки
Шаблон ссылки : /novist
Блоки страниц
Позиция блока : 1  
Сортировка блока внутри позиции : 2  
Строка блока : 6  
Позиция блока : 1  
Сортировка блока внутри позиции : 1  
Строка блока : 6
Сайт : TEST
JS :
$(document).ready(function () {
$('.big-object-left-data').find('.object-data').each(function () {
var me = $(this), parent = me.parent();
var images = $(this).find('.news-image');
if (images != null && images.length > 0) {
var a = images.first().find('a');
parent.css('background', 'url("' + a.attr('href') + '") no-repeat scroll center top');
parent.addClass('news-with-image');
}

var title = me.find('.news-title'),
newsText = me.find('.news-text');
if (title.height() > 40) {
newsText.attr('style', 'max-height: 39px !important;');
} else if (title.height() > 20) {
newsText.attr('style', 'max-height: 59px !important;');
}
});
});