Merge pull request #1260 from pi-hole/xmr-var

Minor tweaks and cleanup
This commit is contained in:
DL6ER
2020-05-11 21:50:06 +02:00
committed by GitHub
6 changed files with 29 additions and 47 deletions

View File

@@ -283,8 +283,7 @@ $(document).ready(function () {
new_tab.focus();
}
});
$("td:eq(4)", row).addClass("underline");
$("td:eq(4)", row).addClass("pointer");
$("td:eq(4)", row).addClass("text-underline pointer");
}
// Substitute domain by "." if empty
@@ -447,7 +446,7 @@ $(document).ready(function () {
this.style.color = "";
}
);
api.$("td:eq(1)").css("cursor", "pointer");
api.$("td:eq(1)").addClass("pointer");
// Domain
api.$("td:eq(2)").click(function () {
if (autofilter()) {
@@ -471,7 +470,7 @@ $(document).ready(function () {
this.style.color = "";
}
);
api.$("td:eq(2)").css("cursor", "pointer");
api.$("td:eq(2)").addClass("pointer");
// Client
api.$("td:eq(3)").click(function () {
if (autofilter()) {
@@ -493,7 +492,7 @@ $(document).ready(function () {
this.style.color = "";
}
);
api.$("td:eq(3)").css("cursor", "pointer");
api.$("td:eq(3)").addClass("pointer");
}
});