Drop support for Internet Explorer

This commit is contained in:
Richard Hansen 2020-12-18 18:13:02 -05:00 committed by John McLear
parent c5cf7ab144
commit b82bf5c726
7 changed files with 149 additions and 619 deletions

View file

@ -543,11 +543,7 @@ const paduserlist = (function () {
$('#myswatch').css({'background-color': myUserInfo.colorId});
if (browser.msie && parseInt(browser.version) <= 8) {
$('li[data-key=showusers] > a').css({'box-shadow': `inset 0 0 30px ${myUserInfo.colorId}`, 'background-color': myUserInfo.colorId});
} else {
$('li[data-key=showusers] > a').css({'box-shadow': `inset 0 0 30px ${myUserInfo.colorId}`});
}
$('li[data-key=showusers] > a').css({'box-shadow': `inset 0 0 30px ${myUserInfo.colorId}`});
},
};
return self;