Участник:Karaby/common.js: различия между версиями
Перейти к навигации
Перейти к поиску
Karaby (обсуждение | вклад) (Новая страница: «→Check if view is in edit mode and that the required modules are available. Then, customize the toolbar …: if ( $.inArray( mw.config.get( 'wgAction' ), [ 'e…») |
Karaby (обсуждение | вклад) Нет описания правки |
||
Строка 1: | Строка 1: | ||
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */ | /* 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 ) { | if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) { | ||
mw.loader.using( 'user.options' ).then( function () { | mw.loader.using( 'user.options' ).then( function () { | ||
Строка 10: | Строка 11: | ||
} ); | } ); | ||
} | } | ||
*/ |
Версия от 09:01, 22 апреля 2017
/* 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 );
}
} );
}
*/