terminando servicios manipulados y preimpresion

This commit is contained in:
2023-12-04 20:50:58 +01:00
parent 76c815212f
commit ab6763aeaa
329 changed files with 811 additions and 59359 deletions

View File

@ -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);
});
}
})();