Ero sivun ”Järjestelmäviesti:Common.js” versioiden välillä
Seikkailuoppaasta
(Ak: Uusi sivu: $(() => { // hide the stupid navigation options under the title $('#mw-page-header-links').hide(); $('#p-views li').each(function(){ if (!$(this).is('#ca-more')) { $('#p-...) |
|||
| Rivi 1: | Rivi 1: | ||
| − | $(() | + | $(function(){ |
// hide the stupid navigation options under the title | // hide the stupid navigation options under the title | ||
Versio 12. kesäkuuta 2022 kello 22.35
$(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));
}
});
});