|
|
(Není zobrazeno 10 mezilehlých verzí od stejného uživatele.) |
Řádek 1: |
Řádek 1: |
| /* Zde uvedený JavaScript bude použit pro všechny uživatele při načtení každé stránky. */ | | /* Zde uvedený JavaScript bude použit pro všechny uživatele při načtení každé stránky. */ |
|
| |
| // install [[Wikipedia:User:Cacycle/wikEd]] in-browser text editor
| |
| //importScriptURI('resources/wikEd.js');
| |
| var customizeToolbar = function() {
| |
| if ( mw.toolbar ) {
| |
| mw.toolbar.addButton( {
| |
| imageFile: '//upload.wikimedia.org/wikipedia/en/3/34/Button_hide_comment.png',
| |
| speedTip: 'Comment visible only for editors',
| |
| tagOpen: '<!-- ',
| |
| tagClose: ' -->',
| |
| sampleText: 'Insert comment here',
| |
| imageId: 'button-comment'
| |
| } );
| |
| }
| |
| };
| |
|
| |
| /* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
| |
| if ( mw.toolbar ) {
| |
| mw.loader.using( 'user.options', 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 );
| |
| }
| |
| } );
| |
| }
| |
Aktuální verze z 6. 3. 2023, 13:53
/* Zde uvedený JavaScript bude použit pro všechny uživatele při načtení každé stránky. */