|
@@ -57,18 +57,23 @@
|
|
|
var td;
|
|
|
switch (flt[0]) {
|
|
|
case 'label':
|
|
|
+ case '-label':
|
|
|
td = tr[i].getElementsByTagName("td")[6];
|
|
|
break;
|
|
|
case 'assignee':
|
|
|
+ case '-assignee':
|
|
|
td = tr[i].getElementsByTagName("td")[5];
|
|
|
break;
|
|
|
case 'author':
|
|
|
+ case '-author':
|
|
|
td = tr[i].getElementsByTagName("td")[4];
|
|
|
break;
|
|
|
}
|
|
|
if (td) {
|
|
|
txtValue = td.textContent || td.innerText;
|
|
|
- if (txtValue.indexOf(flt[1]) > -1) {
|
|
|
+ console.log(flt[0].charAt(0));
|
|
|
+ if ((flt[0].charAt(0) != '-' && txtValue.indexOf(flt[1]) > -1)
|
|
|
+ || (flt[0].charAt(0) == '-' && txtValue.indexOf(flt[1]) <= -1)) {
|
|
|
tr[i].style.display = "";
|
|
|
} else {
|
|
|
tr[i].style.display = "none";
|