Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ui-navbar.js 424B

12345678910111213141516171819
  1. /**
  2. * UI Navbar
  3. */
  4. 'use strict';
  5. (function () {
  6. // If layout is RTL add .dropdown-menu-end class to .dropdown-menu
  7. if (isRtl) {
  8. Helpers._addClass('dropdown-menu-end', document.querySelectorAll('.dropdown-menu'));
  9. }
  10. // Mega dropdown
  11. const megaDropdown = document.querySelectorAll('.nav-link.mega-dropdown');
  12. if (megaDropdown) {
  13. megaDropdown.forEach(e => {
  14. new MegaDropdown(e);
  15. });
  16. }
  17. })();