From aefc09d2229acbd6325a0f9a223158d22cea3010 Mon Sep 17 00:00:00 2001 From: hael Date: Fri, 14 Mar 2025 14:24:25 +0100 Subject: [PATCH] uninstall confirm --- manage.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/manage.html b/manage.html index b26a86a..d3eb2ab 100644 --- a/manage.html +++ b/manage.html @@ -324,6 +324,13 @@ function check_uninstall(additional) { } function uninstall(additional) { + + data = '
YOU ARE GOING TO UNINSTALL '+additional.toUpperCase()+'.
ARE YOU SURE? IF YES, PLEASE CLICK ON THE BUTTON BELOW.

'; + jQuery("#"+additional).html(data); +} + +function confirm_uninstall(additional) { + jQuery("#"+additional).html('Loading...'); var url = 'scan.php?op=uninstall&additional='+additional; jQuery.get(url, function(data) { console.log('uninstall '+additional+': '+data);