You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
I use both sapper and bable in combination for the compatibilty.
Then I saw the error that be unable to get property 'blur' of undefined or null reference.
document.activeElement.blur();`
This problem may only occur on IE. (I tested on IE11). When any elements are not focused, document.activeElement return document.body on the other browser. But there is a posibility that a element will be null or non element on IE.
I use both sapper and bable in combination for the compatibilty.
Then I saw the error that be unable to get property 'blur' of undefined or null reference.
This problem may only occur on IE. (I tested on IE11). When any elements are not focused, document.activeElement return document.body on the other browser. But there is a posibility that a element will be null or non element on IE.
So, it may have to rewrite the below a code.
The text was updated successfully, but these errors were encountered: