| 12345678910111213141516171819202122232425262728293031 |
- $(function() {
- // $("#f-category button").on("click", function() {
- // c_id = $(this).attr("id").replace("f-c", "");
- // l_id = $(this).attr("list_id");
- // sub_project_list = [];
- // db_table["project"].forEach(element => {
- // if(element["category_id"] == c_id) {
- // sub_project_list.push(element["project_id"]);
- // }
- // });
- // sub_project_list.forEach(element => {
- // $("#f-p" + element).toggleClass("btn-primary btn-default");
- // });
- // sub_type_list = [];
- // db_table["type"].forEach(element => {
- // if(element["filetype_id"] == l_id) {
- // sub_project_list.push(element["type_id"]);
- // }
- // });
- // sub_type_list.forEach(element => {
- // $("#f-t" + element).toggleClass("btn-primary btn-default");
- // });
- // });
- // $("#f-project button").on("click", function() {
- // id = $(this).attr("id").replace("f-p", "");
-
- // });
- });
|