Участник:Jack who built the house/discussion indentation.js

/* Добавляет в верхнюю панель кнопку, с помощью которой можно вставить символ отступа дискуссии не думая о клавиатурной звёздочке и сочетаниях ctrl+. Полезно для унификации дискуссий. Основан на https://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization . */

var customizeToolbarAsterisk = function() {
	$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'main',
	'group': 'insert',
	'tools': {
		'indent': {
			filters: [ 'body.ns-talk, body.ns-3, body.ns-4, body.ns-5, body.ns-7, body.ns-9, body.ns-11, body.ns-15, body.ns-101, body.ns-103, body.ns-105'],
			label: 'отступ в дискуссии',
			type: 'button',
			icon: 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/8b/U%2B21B7.svg/20px-U%2B21B7.svg.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "*" // text to be inserted
				}
			}
		}
	}
} );
};

/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
	mw.loader.using( 'user.options' ).then( function () {
		// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
		if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
			$.when(
				mw.loader.using( 'ext.wikiEditor' ), $.ready
			).then( customizeToolbarAsterisk );
		}
	} );
}
Prefix: a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9

Portal di Ensiklopedia Dunia

Kembali kehalaman sebelumnya