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

Материал из ЮУГМУ Вики
Нет описания правки
Нет описания правки
Строка 1: Строка 1:
/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */
/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */
function customizeToolbar() {
/* Check if we are in edit mode and the required modules are available and then customize the toolbar */
    $('#left-navigation').wikiEditor('addToToolbar', {
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
        'section': 'main',
// Add a hook handler.
        'group': 'format',
mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) {
        'tools': {
// Configure a new toolbar entry on the given $textarea jQuery object.
             'guillemets': {
$textarea.wikiEditor( 'addToToolbar', {
section: main,
group: format,
tools: {
             guillemets: {
                 label: 'Anførselstegn',
                 label: 'Anførselstegn',
                 type: 'button',
                 type: 'button',
Строка 17: Строка 21:
                 }
                 }
             }
             }
        }
}
    });
} );
}
} );
/* Check if we are in edit mode and the required modules are available and then customize the toolbar */
if ($.inArray(mw.config.get('wgAction'), ['edit', 'submit']) !== -1 ) {
    mw.loader.using( 'user.options', function () {
        if ( mw.user.options.get('usebetatoolbar') ) {
            mw.loader.using( 'ext.wikiEditor.toolbar', function () {
                $(customizeToolbar);
            } );
        }
    });
}
}

Версия от 11:29, 13 мая 2024

/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */
/* Check if we are in edit mode and the required modules are available and then customize the toolbar */
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
	// Add a hook handler.
	mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) {
		// Configure a new toolbar entry on the given $textarea jQuery object.
		$textarea.wikiEditor( 'addToToolbar', {
			section: main,
group: format,
tools: {
            guillemets: {
                label: 'Anførselstegn',
                type: 'button',
                icon: '//upload.wikimedia.org/wikipedia/commons/b/b5/Wikify_button.svg',
                action: {
                    type: 'encapsulate',
                    options: {
                        pre: "«",
                        post: "»"
                    }
                }
            }
		}
		} );
	} );
}