暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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