这是林泊百科的迁移技术测试站点,所有改动不会同步到林泊百科上,此站点将会在正式迁移后关闭,请勿存放重要数据
MediaWiki:Gadget-Emoji.js:修订间差异
跳转到导航
跳转到搜索
小无编辑摘要 |
小无编辑摘要 |
||
| 第5行: | 第5行: | ||
tools: { | tools: { | ||
buttonId: { | buttonId: { | ||
labelMsg: 'gadget-emoji-tle', | labelMsg: 'gadget-emoji-toolbar-tle', | ||
type: 'button', | type: 'button', | ||
action: { | action: { | ||
2022年4月3日 (日) 23:05的版本
$(function() {mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) {
$textarea.wikiEditor( 'addToToolbar',{
section: 'advanced',
group: 'format',
tools: {
buttonId: {
labelMsg: 'gadget-emoji-toolbar-tle',
type: 'button',
action: {
type: 'encapsulate',
options: {
pre: '<!-- ',
periMsg: 'emoji-txt',
post: ' -->'
}
}
}
}
});
});});