7 lines
335 B
JavaScript
7 lines
335 B
JavaScript
$(function() {
|
|
// responsive column hide for results
|
|
$("#queue th:nth-child(4)").addClass("d-none d-md-table-cell");
|
|
$("#queue td:nth-child(4)").addClass("d-none d-md-table-cell");
|
|
$("#queue th:nth-child(3)").addClass("d-none d-sm-table-cell");
|
|
$("#queue td:nth-child(3)").addClass("d-none d-sm-table-cell");
|
|
}); |