这是林泊百科的迁移技术测试站点,所有改动不会同步到林泊百科上,此站点将会在正式迁移后关闭,请勿存放重要数据
MediaWiki:Gadget-Emoji.js:修订间差异
跳转到导航
跳转到搜索
小无编辑摘要 |
小 排版 |
||
| 第2行: | 第2行: | ||
$textarea.wikiEditor( 'addToToolbar',{ | $textarea.wikiEditor( 'addToToolbar',{ | ||
section: 'advanced', | section: 'advanced', | ||
group: 'format', | |||
tools: { | |||
buttonId: { | |||
label: 'Comment visible only for editors', | |||
type: 'button', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: '<!-- ', | |||
peri: 'Insert comment here', | |||
post: ' -->' | |||
} | |||
} | |||
} | |||
} | |||
}); | |||
});}); | });}); | ||
2022年3月28日 (一) 22:32的版本
$(function() {mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) {
$textarea.wikiEditor( 'addToToolbar',{
section: 'advanced',
group: 'format',
tools: {
buttonId: {
label: 'Comment visible only for editors',
type: 'button',
action: {
type: 'encapsulate',
options: {
pre: '<!-- ',
peri: 'Insert comment here',
post: ' -->'
}
}
}
}
});
});});