Участник:Karaby/common.js: различия между версиями
Перейти к навигации
Перейти к поиску
Karaby (обсуждение | вклад) Нет описания правки |
Karaby (обсуждение | вклад) мНет описания правки |
||
Строка 12: | Строка 12: | ||
} | } | ||
*/ | */ | ||
var customizeToolbar = function () { | |||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | |||
'section': 'advanced', | |||
'group': 'blanks', | |||
'tools': { | |||
'blank-user': { | |||
'label': 'Мои инструменты', | |||
'type': 'select', | |||
'list': { | |||
'blank-user-1' : { // Вставить ... | |||
'label': 'Просмотрено de visu', | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '', | |||
'peri': '', // <== сюда курсор (текущее выделение) | |||
'post': '{{e02|vc|dv}}', | |||
} | |||
} | |||
}, | |||
} | |||
} | |||
}; | |||
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */ | |||
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -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 ); | |||
} | |||
} ); | |||
} |
Версия от 08:24, 15 сентября 2020
/* 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.toolbar' ), $.ready
).then( customizeToolbar );
}
} );
}
*/
var customizeToolbar = function () {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'advanced',
'group': 'blanks',
'tools': {
'blank-user': {
'label': 'Мои инструменты',
'type': 'select',
'list': {
'blank-user-1' : { // Вставить ...
'label': 'Просмотрено de visu',
'action': {
'type': 'encapsulate',
'options': {
'pre': '',
'peri': '', // <== сюда курсор (текущее выделение)
'post': '{{e02|vc|dv}}',
}
}
},
}
}
};
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -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 );
}
} );
}