User:Bbb23/sigbutton.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
jQuery( document ).ready( function ( $ ) {
        if ( !$.fn.wikiEditor ) {
                return;
        }
 
        $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
                section: 'main',
                group: 'insert',
                tools: {
                        'signature-ns2': {
                                labelMsg: 'wikieditor-toolbar-tool-signature',
                                filters: [ 'body.ns-2' ], 
                                type: 'button',
                                offset: [2, -1872],
                                icon: 'insert-signature.png',
                                action: {
                                        type: 'encapsulate',
                                        options: {
                                                pre: '--~~' + '~~'
                                        }
                                }
                        }
                }
        });
} );