Source code of Leftypol imageboard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
447 B

if (active_page == 'catalog') $(function(){
$("#sort_by").change(function(){
var value = this.value;
$("#sort-"+value).trigger("click");
});
$("#image_size").change(function(){
var value = this.value, old;
if (value == "small") {
old = "large";
} else {
old = "small";
}
$(".grid-li").removeClass("grid-size-"+old);
$(".grid-li").addClass("grid-size-"+value);
});
$('#Grid').mixitup({
});
});