Difference between revisions of "MediaWiki:Common.js"

From Joseph Smith Wiki
Jump to navigation Jump to search
Line 8: Line 8:
 
'label': 'TNG Links'
 
'label': 'TNG Links'
 
// or 'labelMsg': 'section-emoticons-label' for a localized label
 
// or 'labelMsg': 'section-emoticons-label' for a localized label
}
 
}
 
 
'section': 'tng-links',
 
'groups': {
 
'person-link': {
 
'label': 'Link to Person',
 
'family-link': {
 
'label': 'Link to Family'
 
 
}
 
}
 
}
 
}

Revision as of 10:15, 13 May 2021

/* Any JavaScript here will be loaded for all users on every page load. */

var customizeToolbar = function () {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'sections': {
		'tng-links': {
			'type': 'toolbar', // Can also be 'booklet'
			'label': 'TNG Links'
			// or 'labelMsg': 'section-emoticons-label' for a localized label
		}
	}
} );
};

/* 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 );
		}
	} );
}