Closed
Description
This was brought up as an issue in VueJS as well.
In short, when inside an iframe in Internet Explorer, the document.activeElement
check causes an unspecified error. Here is a screenshot of the error in the console:
It appears it has been resolved as an Internet Explorer bug recently However, it would appear this could also be addressed without waiting on an Internet Explorer update for users.
As benvirus' comment points out, it appears this can be address by changing the logic to check for document.activeElement
to something along these lines:
try {
return document.activeElement !== elm && elm.value !== checkVal
} catch (e) {
return true;
}
Metadata
Metadata
Assignees
Labels
No labels