mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
terminando servicios manipulados y preimpresion
This commit is contained in:
@ -1,19 +0,0 @@
|
||||
/**
|
||||
* 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);
|
||||
});
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user