Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.


Warning for game developers: PCGamingWiki staff members will only ever reach out to you using the official press@pcgamingwiki.com mail address.
Be aware of scammers claiming to be representatives or affiliates of PCGamingWiki who promise a PCGW page for a game key.

Difference between revisions of "User:Suicide machine/common.js"

From PCGamingWiki, the wiki about fixing PC games
m
Line 15: Line 15:
 
'label': 'Lists',
 
'label': 'Lists',
 
'layout': 'characters',
 
'layout': 'characters',
'characters':[
+
'characters': [
'{{List}}',
 
 
{
 
{
'action':
+
'action': {
{
+
'type': 'encapsulate',
type: 'encapsulate',
+
'options': {
options: {
+
'pre': '{{List|content=',
pre: "{{List|content=",
+
'peri': '{{List/row|row=Text here}}',
peri: "whatever",
+
'post': '}}'
post: "}}",
 
ownline: true
 
 
}
 
}
}
+
},
 +
'label': 'List'
 
},
 
},
'{{List/row}}',
 
 
{
 
{
action:
+
'action': {
{
+
'type': 'encapsulate',
type: 'encapsulate',
+
'options': {
options: {
+
'pre': '{{List|content=',
pre: "{{List/row|row=",
+
'peri': '{{List/row|row=Text here}}',
peri: "whatever",
+
'post': '}}'
post: "}}",
 
ownline: true
 
 
}
 
}
}
+
},
 +
'label': 'List/row'
 
}
 
}
 
]
 
]
Line 49: Line 45:
 
});
 
});
 
};
 
};
 
  
 
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
 
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */

Revision as of 22:58, 14 July 2018

var customizeToolbar = function ()
{
	$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', 
	{
	  'sections':
	  {
			'snippets':
			{
			'type': 'booklet',
			'label': 'Extended Templates',
				'pages':
				{
					'section-lists':
					{
						'label': 'Lists',
						'layout': 'characters',
						'characters': [
							{
								'action': {
								'type': 'encapsulate',
									'options': {
										'pre': '{{List|content=',
										'peri': '{{List/row|row=Text here}}',
										'post': '}}'
									}
								},
								'label': 'List'
							},
							{
								'action': {
								'type': 'encapsulate',
									'options': {
										'pre': '{{List|content=',
										'peri': '{{List/row|row=Text here}}',
										'post': '}}'
									}
								},
								'label': 'List/row'
							}
						]
					}
				}
			}
		}
	});
};

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