diff --git a/emhttp/plugins/dynamix/include/DefaultPageLayout.php b/emhttp/plugins/dynamix/include/DefaultPageLayout.php index d8513f31a..af03c8474 100644 --- a/emhttp/plugins/dynamix/include/DefaultPageLayout.php +++ b/emhttp/plugins/dynamix/include/DefaultPageLayout.php @@ -1136,7 +1136,13 @@ $('body').on("click","a", function(e) { confirmButtonText: "" },function(isConfirm) { if (isConfirm) { - window.open(href,target); + var popupOpen = window.open(href,target); + if ( !popupOpen || popupOpen.closed || typeof popupOpen == "undefined" ) { + var popupWarning = addBannerWarning(""); + setTimeout(function() { + removeBannerWarning(popupWarning);} + ,10000); + } } }); }