diff --git a/Focusgroup/focusgroup_polyfill.js b/Focusgroup/focusgroup_polyfill.js index 248be0fe..8f4bbf66 100644 --- a/Focusgroup/focusgroup_polyfill.js +++ b/Focusgroup/focusgroup_polyfill.js @@ -238,7 +238,7 @@ class FocusGroupManager { return true; if ( node.nodeName == "TEXTAREA" && !node.hasAttribute( "disabled" ) ) return true; - if ( node.hasAttribute( "contenteditable" ) && node.getAttribute("contenteditable") == "true" ) + if ( node.contentEditable === "true" ) return true; if ( node.nodeName == "IFRAME" ) return true;