Skip to content

Commit 85d959b

Browse files
A little bit more cleanup....
1 parent 9eb32f4 commit 85d959b

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

supervisor/shared/web_workflow/static/directory.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,9 @@ const sortEvent = new Event('sort');
1515
class SortableTable {
1616
constructor(tableNode) {
1717
this.tableNode = tableNode;
18-
19-
this.columnHeaders = tableNode.querySelectorAll('thead th');
2018
}
2119

2220
setColumnHeaderSort(columnIndex) {
23-
var ch = this.columnHeaders[columnIndex];
24-
this.sortColumn(columnIndex);
25-
}
26-
27-
sortColumn(columnIndex) {
2821
function compareValues(a, b) {
2922
if (a.value === b.value) {
3023
return 0;

0 commit comments

Comments
 (0)