User:KasciJ/common.js

From mediawiki.org

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
$wgAllowUserJs = true;
$wgUseSiteJs = true;
var date = new Date().toISOString().substring(0, 10);

var customizeToolbar = function () {
	mw.hook( 'wikipage.editform' ).add( function () {
	    mw.loader.using( 'mediawiki.toolbar' ).then( function () {
	        mw.toolbar.addButton( {
	            imageFile: '//commons.wikimedia.org/wiki/File:Document_(89020)_-_The_Noun_Project.svg',
	            speedTip: 'Add citation',
	            tagOpen: '<ref>{{Citácia elektronického dokumentu | ',
	            tagClose: ' }}</ref>',
	            sampleText: 'url =  | titul =  | vydavateľ =  | dátum aktualizácie =  | dátum prístupu = '+date+' | jazyk = ',
	            imageId: 'Citacia'
	        } );
	    } );
	} );
};

/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
	mw.loader.using( 'user.options' ).then( 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' ), $.ready
			).then( customizeToolbar );
		}
	} );
}