');
if (active_tab == "tab1")
$.get("AJAX_calls.php", {ref: "carregar_listagem", list: "destaques", tamanho: tamanho})
.done(function (data) {
$(".list-" + active_tab).html(data);
setThumbsSize();
});
else if (active_tab == "tab2")
$.get("AJAX_calls.php", {ref: "carregar_listagem", list: "recentes", tamanho: tamanho})
.done(function (data) {
$(".list-" + active_tab).html(data);
setThumbsSize();
});
else
$.get("AJAX_calls.php", {ref: "carregar_listagem", list: "aleatorias", tamanho: tamanho})
.done(function (data) {
$(".list-" + active_tab).html(data);
setThumbsSize();
});
}
});
}
});
});
$('.form-group').on('click', 'input[type=radio]', function () {
$(this).closest('.form-group').find('.radio-inline, .radio').removeClass('checked');
$(this).closest('.radio-inline, .radio').addClass('checked');
});
$('.form-group').on('click', 'input[type=checkbox]', function () {
$(this).closest('.checkbox-inline, .checkbox').toggleClass('checked');
});
$(document).ready(function ($) {
window.onresize = function (event) {
setThumbnailsSize();
};
});
function changeDisplayThumbSize() {
max = 0;
$(".list-" + active_tab).remove();
$(".tabMainContent").append('
');
if (active_tab == "tab1")
$.get("AJAX_calls.php", {ref: "carregar_listagem", list: "destaques", tamanho: tamanho})
.done(function (data) {
$(".list-" + active_tab).html(data);
setThumbsSize();
});
else if (active_tab == "tab2")
$.get("AJAX_calls.php", {ref: "carregar_listagem", list: "recentes", tamanho: tamanho})
.done(function (data) {
$(".list-" + active_tab).html(data);
setThumbsSize();
});
else
$.get("AJAX_calls.php", {ref: "carregar_listagem", list: "aleatorias", tamanho: tamanho})
.done(function (data) {
$(".list-" + active_tab).html(data);
setThumbsSize();
});
}
function th1() {
tamanho = 3;
changeDisplayThumbSize();
}
function th2() {
tamanho = 2;
changeDisplayThumbSize();
}
function th3() {
tamanho = 1;
changeDisplayThumbSize();
}