diff --git a/src/opnsense/mvc/app/views/OPNsense/Proxy/index.volt b/src/opnsense/mvc/app/views/OPNsense/Proxy/index.volt index 2546e0f67..ecd99de78 100644 --- a/src/opnsense/mvc/app/views/OPNsense/Proxy/index.volt +++ b/src/opnsense/mvc/app/views/OPNsense/Proxy/index.volt @@ -56,6 +56,20 @@ POSSIBILITY OF SUCH DAMAGE. } ); + // when closing DialogEditBlacklist, point the user to the download buttons + $("#DialogEditBlacklist").on("show.bs.modal", function () { + // wait some time before linking the save button, missing handle + setTimeout(function(){ + $("#btn_DialogEditBlacklist_save").click(function(){ + $("#remoteACLchangeMessage").slideDown(1000, function(){ + setTimeout(function(){ + $("#remoteACLchangeMessage").slideUp(2000); + }, 2000); + }); + }); + }, 500); + }); + /** * * Reconfigure proxy - activate changes @@ -253,17 +267,20 @@ POSSIBILITY OF SUCH DAMAGE. - + +