MediaWiki:Common.js: Difference between revisions
From Variscite Wiki
No edit summary |
No edit summary |
||
Line 22: | Line 22: | ||
var $t = $(this); | var $t = $(this); | ||
$.each(exts, function(i,v){ | $.each(exts, function(i,v){ | ||
$t.attr(' | $t.attr('alt', $t.attr('alt').replace(v, '')); | ||
}); | }); | ||
}); | }); | ||
}); | }); |
Revision as of 07:24, 3 November 2021
/* Any JavaScript here will be loaded for all users on every page load. */
$(function() {
$('#mw-navigation .nav-item .nav-link').not('.dropdown-menu .nav-link').addClass('hvr-underline-from-center');
const products = $('#products-dropdown');
$('#products-menu > li').append(products);
$('#products-menu .dropdown-menu a.dropdown-toggle').on('click', function(e) {
if (!$(this).next().hasClass('show')) {
$(this).parents('.dropdown-menu').first().find('.show').removeClass("show");
}
var $subMenu = $(this).next(".dropdown-menu");
$subMenu.toggleClass('show');
$(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function(e) {
$('.dropdown-submenu .show').removeClass("show");
});
return false;
});
var exts = ['.jpg', '.gif', '.png'];
$('img').each(function(){
var $t = $(this);
$.each(exts, function(i,v){
$t.attr('alt', $t.attr('alt').replace(v, ''));
});
});
});