mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
20 lines
424 B
JavaScript
Executable File
20 lines
424 B
JavaScript
Executable File
/**
|
|
* 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);
|
|
});
|
|
}
|
|
})();
|