You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
/* 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');
var exts = ['.jpg', '.gif', '.png'];
$('img').each(function(){
var $t = $(this);
$.each(exts, function(i,v){
$t.attr('alt', $t.attr('alt').replace(v, ''));
});
});
$('.newtab, .openinnew a').attr( 'target', '_blank' );
});
$(window).scroll(function() {
document.activeElement && document.activeElement.blur();
$('#products-menu #navbarDropdown')
.attr('aria-expanded', 'false');
000
1:0
Return to MediaWiki:Common.js.