mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-19 16:02:15 +00:00
issueDataset.js: code formatting
This commit is contained in:
@@ -100,20 +100,16 @@ var IssuesDataset = {
|
||||
IssuesDataset.changeIssueStatus(issue_ids, status_kurzbz);
|
||||
});
|
||||
|
||||
$(".selectAll").click(function()
|
||||
{
|
||||
//select only trs if not filtered by tablesorter
|
||||
var trs = $("#filterTableDataset tbody tr").not(".filtered");
|
||||
trs.find("input[name=issue_id\\[\\]]").prop("checked", true);
|
||||
}
|
||||
);
|
||||
$(".selectAll").click(function() {
|
||||
//select only trs if not filtered by tablesorter
|
||||
var trs = $("#filterTableDataset tbody tr").not(".filtered");
|
||||
trs.find("input[name=issue_id\\[\\]]").prop("checked", true);
|
||||
});
|
||||
|
||||
$(".unselectAll").click(function()
|
||||
{
|
||||
$(".unselectAll").click(function() {
|
||||
var trs = $("#filterTableDataset tbody tr").not(".filtered");
|
||||
trs.find("input[name=issue_id\\[\\]]").prop("checked", false);
|
||||
}
|
||||
);
|
||||
});
|
||||
},
|
||||
/**
|
||||
* sends request for changing issue status
|
||||
|
||||
Reference in New Issue
Block a user