Compile message no longer overflows on small screens

This commit is contained in:
n1474335 2018-08-20 00:04:49 +01:00
parent 2507362741
commit f052ed9b00
3 changed files with 11 additions and 2 deletions

View file

@ -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));
}