We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aad7f3a commit e45490eCopy full SHA for e45490e
1 file changed
index.html
@@ -563,7 +563,9 @@ <h3 class="modal-title">Push Project Changes to GitHub</h3>
563
<script>
564
// submenus open on click + hover
565
$( ".dropdown-submenu" ).click(function(event) {
566
- event.stopPropagation();
+ if (!$(event.target).hasClass('dropdown-item')) {
567
+ event.stopPropagation();
568
+ }
569
$(this).parent().siblings().removeClass('open');
570
$(this).parent().toggleClass('open');
571
});
0 commit comments