This commit is contained in:
Andrew Bauer 2021-01-08 08:50:57 -06:00 committed by Isaac Connor
parent a6964f66e2
commit d2cc65c8a3
1 changed files with 7 additions and 7 deletions

View File

@ -823,14 +823,14 @@ function manageDelConfirmModalBtns() {
}
function msieVer() {
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");
if (msie >= 0) { // If Internet Explorer, return version number
return msie;
} else { // If another browser, return 0
return 0;
}
if (msie >= 0) { // If Internet Explorer, return version number
return msie;
} else { // If another browser, return 0
return 0;
}
}
function initPage() {