mirror of
https://github.com/pi-hole/web.git
synced 2026-05-29 20:13:20 +01:00
Hide "exact match" button on queryads.php page if version is 2.9.5 or lower
This commit is contained in:
@@ -124,3 +124,10 @@ else
|
||||
{
|
||||
document.getElementById("sessiontimer").style.display = "none";
|
||||
}
|
||||
|
||||
// Hide "exact match" button on queryads.php page if version is 2.9.5 or lower
|
||||
alert(versionCompare(piholeVersion, "v2.9.5"));
|
||||
if(versionCompare(piholeVersion, "v2.9.5") < 1)
|
||||
{
|
||||
$("#btnSearchExact").hide();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user