|
|
| Строка 1: |
Строка 1: |
| /* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */ | | /* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */ |
| /* Check if we are in edit mode and the required modules are available and then customize the toolbar */
| | $(document).ready(function() { |
| if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
| | $('body').append('<div> <!-- Your custom HTML code here --> </div>'); |
| // 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: "»"
| |
| }
| |
| }
| |
| }
| |
| }
| |
| } );
| |
| } );
| |
| }
| |