Update detect.js

This commit is contained in:
Thomas G 2022-10-30 21:09:54 +11:00
parent e9a7d2f0ee
commit bc250a39c8
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
function addWarning() {
let alertDiv = document.createElement("div");
alertDiv.innerHTML = "You are on an unsupported url of the site. Please go to <a href='https://archblox.com'>archblox.com</a> instead.";
alertDiv.innerHTML = "You are on an unsupported version of the site. Please go to <a href='https://archblox.com'>archblox.com</a> instead.";
alertDiv.setAttribute("id","alert");
document.body.appendChild(alertDiv);
}