MediaWiki:Common.js

Матеріал з Вікі ЦДУ
Версія від 15:08, 5 вересня 2014; Іванова Людмила (обговореннявнесок)

(різн.) ← Попередня версія • Поточна версія (різн.) • Новіша версія → (різн.)
Перейти до: навігація, пошук

Увага: Після збереження слід очистити кеш оглядача, щоб побачити зміни.

  • Firefox / Safari: тримайте Shift, коли натискаєте Оновити, або натисніть Ctrl-F5 чи Ctrl-Shift-R (⌘-R на Apple Mac)
  • Google Chrome: натисніть Ctrl-Shift-R (⌘-Shift-R на Apple Mac)
  • Internet Explorer: тримайте Ctrl, коли натискаєте Оновити, або натисніть Ctrl-F5
  • Opera: очистіть кеш за допомогою Інструменти → Налаштування
/* Розміщений тут код 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 );