Difference between revisions of "MediaWiki:Common.js"

From Chilipedia
Jump to: navigation, search
(Undo revision 169 by Chili (talk))
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
  
var customizeToolbar = function() {
+
var customizeToolbar = function() { $(document).ready( function() {
 
/* Your code goes here */
 
/* Your code goes here */
 
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
Line 20: Line 20:
 
}
 
}
 
}
 
}
}
+
} })
 
} );
 
} );
 
};
 
};
Line 27: Line 27:
 
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
 
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
 
mw.loader.using( 'user.options', function () {
 
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 ) {
 
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
 
$.when(
 
$.when(
 
mw.loader.using( 'ext.wikiEditor.toolbar' ), $.ready
 
mw.loader.using( 'ext.wikiEditor.toolbar' ), $.ready
).then( $(document).ready( customizeToolbar ) );
+
).then( customizeToolbar );
 
}
 
}
 
} );
 
} );

Revision as of 14:34, 13 July 2016

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

var customizeToolbar = function() { $(document).ready( function() {
	/* Your code goes here */
	$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'advanced',
	'group': 'format',
	'tools': {
		'codbutt': {
			label: 'for a short code snip', // or use labelMsg for a localized label, see above
			type: 'button',
			icon: 'cod',
			action: {
				type: 'encapsulate',
				options: {
					pre: "<code>",
					peri: "",
					post: "</code>"
				}
			}
		}
	} })
} );
};

/* 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 ([[phab:T54542#555387]])
		if ( mw.user.options.get( 'usebetatoolbar' ) == 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 );