We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de2a755 commit f5c14c2Copy full SHA for f5c14c2
1 file changed
src/js/dropdown.js
@@ -49,7 +49,8 @@ var dropdown = (function() {
49
};
50
51
documentEvent.clickOut = function() {
52
- if (!event.path.includes(_currentFormDropdown)) {
+ var path = event.composedPath();
53
+ if (!path.includes(_currentFormDropdown)) {
54
close();
55
56
0 commit comments