genmod / application_neo4j /static /js /browser_compatibility.js
pbordescnil's picture
Hide compatibility warning without external CSS
d315e06
Raw
History Blame Contribute Delete
408 Bytes
(function () {
"use strict";
// `document.documentMode` is exposed by Internet Explorer only. The rest of
// the application deliberately targets maintained browsers supported by
// Bootstrap 5.
if (document.documentMode) {
var warning = document.getElementById("legacy-browser-warning");
if (warning) {
warning.hidden = false;
warning.style.display = "block";
}
}
}());