if (active_page == 'catalog') $(function(){
$("#selectorzilla").change(function(){
sheit = this.value;
$("#sort-"+sheit).trigger("click");
});
$("#imgurzilla").change(function(){
sheit = this.value;
if (sheit == "small") {
old = "large";
} else {
old = "small";
}
$(".grid-li").removeClass("grid-size-"+old);
$(".grid-li").addClass("grid-size-"+sheit);
});
$('#Grid').mixitup({
onMixEnd: function(){
if(use_tooltipster) {
buildTooltipster();
}
}
});
if(use_tooltipster) {
buildTooltipster();
}
});
function buildTooltipster(){
$(".thread-image").each(function(){
subject = $(this).attr('data-subject');
name = $(this).attr('data-name');
muhdifference = $(this).attr('data-muhdifference');
last_reply = $(this).attr('data-last-reply');
last_subject = $(this).attr('data-last-subject');
last_name = $(this).attr('data-last-name');
last_difference = $(this).attr('data-last-difference');
muh_body = '';
if (subject) {
muh_body = muh_body + subject + ' por';
} else {
muh_body = muh_body + 'Postado por';
};
muh_body = muh_body + ' ' + name + ' ' + muhdifference + '';
if (last_reply) {
muh_body = muh_body + '
';
if (last_subject) {
muh_body = muh_body + last_subject + ' por';
} else{
muh_body = muh_body + 'Ăšltima resposta por';
};
muh_body = muh_body + ' ' + last_name + ' ' + last_difference + '';
}
$(this).tooltipster({
content: $(muh_body)
});
});
}