Closed Sebastiansc closed 5 years ago
Error: unable to get property 'blur' of undefined or null reference.
document.activeElement.blur();`
By default document.activeElement should return document.body. This is working fine on other browsers but it is null in IE11
document.activeElement
document.body
null
broken in release 2.6.0 https://github.com/negomi/react-burger-menu/commit/095605de825a36770757c996bc0ad85f8317b5cc
Fixed in v2.6.4
Error: unable to get property 'blur' of undefined or null reference.
By default
document.activeElement
should returndocument.body
. This is working fine on other browsers but it isnull
in IE11