Відмінності між версіями «MediaWiki:Common.js»

Матеріал з Вікі ЦДУ
Перейти до: навігація, пошук
(Створена сторінка: /* Розміщений тут код JavaScript буде завантажений всім користувачам при зверненні до будь-я...)
 
(Немає відмінностей)

Поточна версія на 15:08, 5 вересня 2014

/* Розміщений тут код JavaScript буде завантажений всім користувачам при зверненні до будь-якої сторінки */
var customizeToolbar = function() {
	/* Your code goes here */
 
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'main',
        'group': 'insert',
	'tools':{
		'hr': {
			 label: 'Горизонтальна лінія(використовуйте скупо)', // or use labelMsg for a localized label, see above
			type: 'button',
			icon: 'toolbaricon-rule.png',
			action: {
				type: 'encapsulate',
 				options: {
					 pre : '----'
				}
			}
	           },	
 
		'math': {
			label: 'Математична формула(LaTeX)', // or use labelMsg for a localized label, see above
			type: 'button',
			icon: 'button-math.png',
			action: {
				type: 'encapsulate',
 				options: {
					 pre : '<math>',
                                         periMsg:"Вставити формулу",
                                         post: '</math>'  
				}
			}
 
                    } 
 
          }
} );
};
 
 
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar . . . */
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
	mw.loader.using( 'user.options', function () {
		// This can be the string "0" if the user disabled the preference ([[bugzilla:52542#c3]])
		if ( mw.user.options.get( 'usebetatoolbar' ) == 1 && mw.user.options.get( 'showtoolbar' ) == 1 ) {
			$.when(
				mw.loader.using( 'ext.wikiEditor.toolbar' ),
				$.ready
			).then( customizeToolbar );
		}
	} );
}
// Add the customizations to LiquidThreads' edit toolbar, if available
mw.hook( 'ext.lqt.textareaCreated' ).add( customizeToolbar );