mirror of
https://github.com/pi-hole/web.git
synced 2025-12-22 19:58:27 +00:00
8 lines
203 B
JavaScript
8 lines
203 B
JavaScript
$( "#flush" ).click(function() {
|
|
if (confirm("Are you sure you want to flush the Pi-hole log file?")) {
|
|
document.location.href="../../help.php";
|
|
} else {
|
|
// Do nothing!
|
|
}
|
|
});
|