No Description

app.js 538B

12345678910111213141516
  1. const mdc = require('material-components-web');
  2. mdc.autoInit();
  3. $("ul.dropdown-menu [data-toggle='dropdown']").on("click", function(event) {
  4. event.preventDefault();
  5. event.stopPropagation();
  6. $(this).siblings().toggleClass("show");
  7. if (!$(this).next().hasClass('show')) {
  8. $(this).parents('.dropdown-menu').first().find('.show').removeClass("show");
  9. }
  10. $(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function(e) {
  11. $('.dropdown-submenu .show').removeClass("show");
  12. });
  13. });