mirror of
https://github.com/pi-hole/web.git
synced 2024-12-06 19:36:21 +01:00
e188cb6fbc
This reverts commitfba3d10fa4, reversing changes made to4ee75f4167.
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?flush";
|
|
} else {
|
|
// Do nothing!
|
|
}
|
|
});
|