cferdinandi / drop

A small CSS component that turns browser-native <details> elements into dropdown menus.
MIT License
77 stars 12 forks source link

Fix event listener #17

Closed cferdinandi closed 9 years ago

cferdinandi commented 9 years ago
} else if ( toggle !== document.documentElement && toggle.parentNode.hasAttribute( 'data-dropdown' ) ) {

becomes…

} else if ( toggle !== document.documentElement && getClosest(toggle, '[data-dropdown]') ) {
cferdinandi commented 9 years ago

v6.1.1