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