blob: 517ac52e8bef096f296ddd8b038c4db1fb6d3e3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$(document).ready(function() {
$(".forum_category").click(function(e) {
var id = this.id;
var isChecked = $(this).text() != "Check all";
isChecked ? $(this).text("Check all") : $(this).text("Uncheck all");
$("input[data-category='" + id + "']").attr("checked", !isChecked);
e.preventDefault();
});
$("#type_body").click(function() {
$("#post_created_row").gshow();
});
$("#type_title").click(function() {
$("#post_created_row").ghide();
});
});
|