Closed tomchiverton closed 1 year ago
Good catch. Can presumably replace…
reservedTokens.every(token => !customAttribute.key.includes(token))
with...
reservedTokens.every(function (token) {
return !customAttribute.key.includes(token);
})
Internet Explorer 11 is officially kaput. Microsoft no longer supports it. Do you have clients that are still using IE11?
(Not saying I can't implement a fix, but I've spent over 25 years kowtowing to IE. I'd like to bury it for good.)
We have a product with around 30% users still using IE11 on some of the long term support versions of Windows where it is still supported
Fixed. The fat arrow wasn't the only issue, IE11 also choked on the includes()
function. Thanks for reporting
@tomchiverton Just curious, what's the use rate now? Do you know when the LTS for Windows/IE will expire? Everything I've read says IE11 is completely unsupported.
Windows 10 LTSC version is supported till 2027: https://learn.microsoft.com/en-us/lifecycle/products/windows-10-enterprise-ltsc-2021
We still see about 5%-10% IE11 usage, though this is dropping.
Logs a syntax error pointing at line 237, which is an arrow function, so doesn't work