MediaWiki:Common.js: различия между версиями
мНет описания правки |
мНет описания правки |
||
Строка 22: | Строка 22: | ||
} | } | ||
}, | }, | ||
'Style- | '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 );
}
} );
}