MediaWiki:Common.js

Материал из HARITONOV
Перейти к: навигация, поиск
/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */
 
jQuery( document ).ready( function ( $ ) {
    $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        section: 'advanced',
        group: 'format',
        tools: {
            buttonId: {
                label: 'Comment visible only for editors',
                type: 'button',
                icon: '//haritonov.wiki/extensions/CustisScripts/images/Button-cat.png',
                action: {
                    type: 'encapsulate',
                    options: {
                        pre: '<!-- ',
                        peri: 'Insert comment here',
                        post: ' -->'
                    }
                }
            }
        }
    } );
} );