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

来自Limbo Wiki
无编辑摘要
无编辑摘要
第1行: 第1行:
$(function() {mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) {
$(function() {mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) {
$textarea.wikiEditor( 'addToToolbar',{
$textarea.wikiEditor( 'addToToolbar',{
section: 'secondary',
section: 'main',
group: 'default',
group: 'insert',
tools: {
tools: {
buttonId: {
buttonId: {

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

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