From 1a72acabb56d986b29651c321603aa7ac6743b01 Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Sat, 2 Oct 2021 18:59:13 +0300 Subject: [PATCH] Fixed reference error --- src/components/utils/DomHandler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/utils/DomHandler.js b/src/components/utils/DomHandler.js index b7b2da592..ba898bdb1 100755 --- a/src/components/utils/DomHandler.js +++ b/src/components/utils/DomHandler.js @@ -454,7 +454,7 @@ export default { }, getFocusableElements(element) { - let focusableElements = DomHandler.find(element, `button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]), + let focusableElements = this.find(element, `button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]), [href][clientHeight][clientWidth]:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]), input:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]), select:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]), textarea:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]), [tabIndex]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]),