diff --git a/src/web/App.mjs b/src/web/App.mjs index bb9cffb2..d001f9e4 100755 --- a/src/web/App.mjs +++ b/src/web/App.mjs @@ -533,7 +533,9 @@ class App { compileInfo += " - " + window.compileMessage; } - document.getElementById("notice").innerHTML = compileInfo; + const notice = document.getElementById("notice"); + notice.innerHTML = compileInfo; + notice.setAttribute("title", Utils.stripHtmlTags(window.compileMessage)); } diff --git a/src/web/html/index.html b/src/web/html/index.html index aa13da7c..f03590ab 100755 --- a/src/web/html/index.html +++ b/src/web/html/index.html @@ -155,7 +155,7 @@ Download CyberChef file_download <% } %> -
+