MediaWiki:Common.js: различия между версиями

<div style="color: #555555; font-size: 80%; font-style: italic; font-family: serif; text-align: center;">Материал из '''Библиотеки Теопедии''', http://ru.teopedia.org/lib</div>
мНет описания правки
мНет описания правки
Строка 22: Строка 22:
}
}
},
},
'Style-author': {
'Style-book': {
label: 'Книга',
label: 'Книга',
action: {
action: {
Строка 31: Строка 31:
}
}
}
}
},
}
}
}
}
}

Версия от 23:53, 10 октября 2018

/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */

/** -pm- Изменяем панель инструментов в редакторе WikiEditor **/
var customizeToolbar = function () {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'main',
	groups: {
		list: {
			tools: {
				templates: {
					label: 'Стили',
					type: 'select',
					list: {
						'Style-author': {
							label: 'Автор',
							action: {
								type: 'encapsulate',
								options: {
									pre: '{{Стиль А-Автор|',
									post: '}}'
								}
							}
						},
						'Style-book': {
							label: 'Книга',
							action: {
								type: 'encapsulate',
								options: {
									pre: '{{Стиль А-Книга|',
									post: '}}'
								}
							}
						}
					}
				}
			}
		}
	}
} );
}
/* 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( customizeToolbar );
		}
	} );
}