MediaWiki:Gadget-Emoji.js:修订间差异

来自Limbo Wiki
无编辑摘要
无编辑摘要
第7行: 第7行:
label: 'Emoji',
label: 'Emoji',
type: 'button',
type: 'button',
oouiIcon: 'markup',//Code Editor
oouiIcon: 'emoji',//OpenMoji
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',

2022年4月3日 (日) 15:46的版本

$(function() {mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) {
	$textarea.wikiEditor( 'addToToolbar',{
		section: 'advanced',
		group: 'insert',
		tools: {
			buttonId: {
				label: 'Emoji',
				type: 'button',
				oouiIcon: 'emoji',//OpenMoji
				action: {
					type: 'encapsulate',
					options: {
						pre: '<!-- ',
						peri: '注释',
						post: ' -->'
					}
				}
			}
		}
	});
});});