]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
fixes #8603 for me
authorjk <j.koehler@modulingo.de>
Thu, 14 Apr 2016 19:22:45 +0000 (21:22 +0200)
committerjk <j.koehler@modulingo.de>
Thu, 14 Apr 2016 19:22:45 +0000 (21:22 +0200)
removes e.stopImmediatePropagation(); from mouseenter event to provide mouseenter can bubble through and clear the timeout on re enter a pane

js/foundation.dropdownMenu.js

index 3f2f1c4ae27f0262370922f294889a839705f349..9d152b4363d9a1dbefff87b11325eeb60e5773ee 100644 (file)
@@ -96,7 +96,6 @@ class DropdownMenu {
 
     if (!this.options.disableHover) {
       this.$menuItems.on('mouseenter.zf.dropdownmenu', function(e) {
-        e.stopImmediatePropagation();
         var $elem = $(this),
             hasSub = $elem.hasClass(parClass);