Ero sivun ”Järjestelmäviesti:Common.js” versioiden välillä

Seikkailuoppaasta
Rivi 8: Rivi 8:
 
}
 
}
 
});
 
});
 +
 +
// title-less pages
 +
if ($('[data-x-hide-title]').length > 0) {
 +
$('#firstHeading').hide();
 +
}
 
 
 
});
 
});

Versio 13. kesäkuuta 2022 kello 10.32

$(function(){
	
	// hide the stupid navigation options under the title
	$('#mw-page-header-links').hide();
	$('#p-views li').each(function(){
		if (!$(this).is('#ca-more')) {
			$('#p-cactions ul').prepend($(this));
		}
	});
	
	// title-less pages
	if ($('[data-x-hide-title]').length > 0) {
		$('#firstHeading').hide();
	}
	
});