| 12345678910111213141516171819 |
- /**
- * UI Navbar
- */
- 'use strict';
-
- (function () {
- // If layout is RTL add .dropdown-menu-end class to .dropdown-menu
- if (isRtl) {
- Helpers._addClass('dropdown-menu-end', document.querySelectorAll('.dropdown-menu'));
- }
-
- // Mega dropdown
- const megaDropdown = document.querySelectorAll('.nav-link.mega-dropdown');
- if (megaDropdown) {
- megaDropdown.forEach(e => {
- new MegaDropdown(e);
- });
- }
- })();
|