MediaWiki:Common.js: различия между версиями
м (+Прим. пер.) |
мНет описания правки |
||
Строка 3: | Строка 3: | ||
/** -pm- Изменяем панель инструментов в редакторе WikiEditor **/ | /** -pm- Изменяем панель инструментов в редакторе WikiEditor **/ | ||
var customizeToolbar = function () { | var customizeToolbar = function () { | ||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | |||
section: 'advanced', | |||
group: 'format', | |||
tools: { | |||
"ref": { | |||
label: 'Сноска', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/2/2e/Button_math.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "<ref>", | |||
post: "</ref>" | |||
} | |||
} | |||
} | |||
} | |||
} ); | |||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
section: 'main', | section: 'main', |
Версия от 23:31, 22 ноября 2018
/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */
/** -pm- Изменяем панель инструментов в редакторе WikiEditor **/
var customizeToolbar = function () {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"ref": {
label: 'Сноска',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/2/2e/Button_math.png',
action: {
type: 'encapsulate',
options: {
pre: "<ref>",
post: "</ref>"
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'main',
groups: {
list: {
tools: {
templatesA: {
label: 'Стили абзаца',
type: 'select',
list: {
'Style-A-avtor': {label: 'Автор', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Автор|', post: '}}'} } },
'Style-A-data-dnevnika': {label: 'Дата дневника', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Дата дневника|', post: '}}'} } },
'Style-A-zagolovok': {label: 'Заголовок', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Заголовок|', post: '}}'} } },
'Style-A-zagolovok-urovnya': {label: 'Заголовок уровня', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Заголовок уровня|2|', post: '}}'} } },
'Style-A-kniga': {label: 'Книга', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Книга|', post: '}}'} } },
'Style-A-podzagolovok': {label: 'Подзаголовок', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Подзаголовок|', post: '}}'} } },
'Style-A-podpis': {label: 'Подпись', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Подпись|', post: '}}'} } },
'Style-A-prim-per': {label: 'Прим. переводчика', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Прим. пер.|', post: '}}'} } },
'Style-A-tekst-v-centre': {label: 'Текст в центре', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Текст в центре|', post: '}}'} } },
'Style-A-citata': {label: 'Цитата', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Цитата|', post: '}}'} } },
'Style-A-citata-data': {label: 'Цитата, данные отправителя', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Цитата, данные отправителя|', post: '}}'} } },
'Style-A-citata-podpis': {label: 'Цитата, подпись', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Цитата, подпись|', post: '}}'} } },
'Style-A-epigraf': {label: 'Эпиграф', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Эпиграф|', post: '}}'} } }
}
},
templatesS: {
label: 'Стили символа',
type: 'select',
list: {
'Style-S-speaker': {label: 'Говорящий в диалоге', action: {type: 'encapsulate',
options: {pre: '{{Стиль С-Говорящий в диалоге|', post: '}}'} } },
'Style-S-td-ispravlenie': {label: 'ТД-исправление', action: {type: 'encapsulate',
options: {pre: '{{ТД-исправление|текст=', post: '|ред1=|анг1=|анг3=|инфо=|участник=~~ ~~}}'} } },
'Style-S-td-vopros': {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 );
}
} );
}