“MediaWiki:Gadget-site-shared.js”的版本间差异

无编辑摘要
标签移动版网页编辑 移动版编辑
}
 
const lcCats = ["Μ's", 'Lily white', 'JQuery'],;
author = /[创創]作$/;
mw.hook( 'wikipage.categories' ).add(function($content) {
/**
* @Function: 分类栏显示词曲作者的日文名
*/
if (mw.config.get( 'wgNamespaceNumber' ) != 0) { return; }
console.log('Hook: wikipage.categories, 开始替换词曲作者分类');
$content.children( '#mw-normal-catlinks' ).find('a')
.filter(function() { return author.test( this.textContent.endsWith( '作' ); }).html(function(_, val) {
const i = this.classList.contains( 'new' ) ? -98 : -21;
return [$('<span>', {lang: 'ja', text: this.title.slice(9, i)}), val.slice(-21)];
});
});
16,874

个编辑