MediaWiki:Common.js: Difference between revisions
From Business Heroes Food Truck Simulation
Wikiworks743 (talk | contribs) No edit summary |
Wikiworks743 (talk | contribs) No edit summary |
||
Line 12: | Line 12: | ||
var current = $(this).parent().find('.dropdown-menu').attr('id'); | var current = $(this).parent().find('.dropdown-menu').attr('id'); | ||
localStorage.setItem('current', current); | localStorage.setItem('current', current); | ||
// $('#top-panel a.dropdown-toggle').not($(this)).removeClass('show').attr('aria-expanded','false').parent().removeClass('show').find('.dropdown-menu').removeClass('show'); | |||
}); | }); | ||
Revision as of 00:47, 19 December 2022
/* Any JavaScript here will be loaded for all users on every page load. */ $('#p-contentnavigation').append($('#editor-menu')); const classes = ['im-marketing', 'im-finance', 'im-operations', 'im-planning', 'im-hr', 'im-accounting']; getActiveCategory(); getCurrentPageMenu(); $('#top-panel a.dropdown-toggle') .click(function(){ var current = $(this).parent().find('.dropdown-menu').attr('id'); localStorage.setItem('current', current); // $('#top-panel a.dropdown-toggle').not($(this)).removeClass('show').attr('aria-expanded','false').parent().removeClass('show').find('.dropdown-menu').removeClass('show'); }); $('.im-icon') .click(function(){ for(var i = 0, j = classes.length; i < j; i++) { if($(this).hasClass('' + classes[i] + '')) { localStorage.setItem('active', '' + classes[i] + ''); break; } } }) .each(function(){ for(var i = 0, j = classes.length; i < j; i++) { prefix = "/index.php/"; page = decodeURIComponent($(this).attr('href').replace(prefix,'')); $(this).attr('title', page); } }); function getActiveButton(){ var getactive = localStorage.getItem('active'); $('.im-icon.' + getactive + '').click(); $('.im-icon.' + getactive + '').parent().addClass('im-active'); } function getCurrentPageMenu(){ var getcurrent = localStorage.getItem('current'); // $('#' + getcurrent + '').click(); $('#' + getcurrent + '').addClass('show').parent().addClass('position-static show').find('a').attr('aria-expanded', 'true'); } function getActiveCategory(){ var cat = []; cat = mw.config.get('wgCategories'); if(cat.includes("Planning")) { $('.im-planning').parent().addClass('im-active'); localStorage.setItem('active', 'im-planning' ); } else if(cat.includes("Finance")) { $('.im-finance').parent().addClass('im-active'); localStorage.setItem('active', 'im-finance' ); } else if(cat.includes("Marketing")) { $('.im-marketing').parent().addClass('im-active'); localStorage.setItem('active', 'im-marketing' ); } else if(cat.includes("Operations")) { $('.im-operations').parent().addClass('im-active'); localStorage.setItem('active', 'im-operations' ); } else if(cat.includes("HR")) { $('.im-hr').parent().addClass('im-active'); localStorage.setItem('active', 'im-hr' ); } else if(cat.includes("accounting")) { $('.im-accounting').parent().addClass('im-active'); localStorage.setItem('active', 'im-accounting' ); } else { getActiveButton(); } }