200
правок
(Новая страница: «→Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице: →WikiEditor/Викификатор: if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) { mw.loader.load( '//ru.wikipedia.org/w/index.php?title=MediaWiki:Gadget-wikificator.js&action=raw&ctype=text/javascript' ); } var customizeToolbar = function() {...») |
Нет описания правки |
||
Строка 35: | Строка 35: | ||
} ); | } ); | ||
} | } | ||
$( document ).ready(function() { | |||
// Патч от Sstealhh №1. Делаем автонавшаблоны чуть более красивыми | |||
$('div.auto_category_list > p') | |||
.contents() | |||
.filter(function() { | |||
return this.nodeType === 3 && this.textContent === ', '; | |||
}) | |||
.replaceWith(' • '); // Заменили запятые на точки | |||
$('div.auto_category_list a[title="' + mw.config.get('wgTitle') + '"]') | |||
.replaceWith('<strong>' + mw.config.get('wgTitle') + '</strong>'); // Перекрасили название статьи | |||
// Патч от Sstealhh №3. Делаем обсуждения чуть более читаемыми | |||
if (mw.config.get('wgNamespaceNumber') % 2 === 1) { | |||
$(".mw-parser-output > ul, .mw-parser-output > dl").find("li, dd").each(function() { | |||
$(this).contents().filter(function() {return this.nodeName !== "UL" && this.nodeName !== "DL"}).wrapAll("<div class='mw-discussion-message' />") | |||
}); | |||
$(".mw-parser-output > ul li").css("list-style", "none"); | |||
} | |||
}) |