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
m (Reverted edits by Suicide machine (talk) to last revision by Aemony)
Tag: Rollback
 
(33 intermediate revisions by 2 users not shown)
Line 1: Line 1:
var customizeToolbar = function() {
+
// <nowiki>
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
+
var customizeToolbar = function ()
sections: {
+
{
'templates': {
+
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar',  
type: 'toolbar',
+
{
label: 'Extended Templates',
+
  'sections':
groups: {
+
  {
templates: {
+
'snippets':
'label': 'Extended Templates',
+
{
'tools': {
+
'type': 'booklet',
}
+
'label': 'Extended Templates',
 +
'pages':
 +
{
 +
'section-lists':
 +
{
 +
'label': 'Lists',
 +
'layout': 'characters',
 +
'characters': [
 +
{
 +
'action': {
 +
'type': 'encapsulate',
 +
'options': {
 +
'pre': '{{List|content=\n',
 +
'peri': '{{List/row|row=Text here}}',
 +
'post': '\n}}'
 +
}
 +
},
 +
'label': 'List'
 +
},
 +
{
 +
'action': {
 +
'type': 'encapsulate',
 +
'options': {
 +
'pre': '{{List/row|row=',
 +
'peri': 'Text here',
 +
'post': '}}'
 +
}
 +
},
 +
'label': 'List/row'
 +
}
 +
]
 +
},
 +
'section-common-lines':
 +
{
 +
'label': 'Common lines',
 +
'layout': 'characters',
 +
'characters': [
 +
{
 +
'action': {
 +
'type': 'encapsulate',
 +
'options': {
 +
'pre': 'Enable windowed mode and use the <code>-popupwindow</code> [[Glossary:Command line arguments|parameter]].',
 +
}
 +
},
 +
'label': 'Unity\'s popupwindow'
 +
},
 +
{
 +
'action': {
 +
'type': 'encapsulate',
 +
'options': {
 +
'pre': 'Start the game with <code>+windowed 1</code> [[Glossary:Command line arguments|parameter]].',
 +
}
 +
},
 +
'label': 'LithTech Windowed'
 +
},
 +
{
 +
'action': {
 +
'type': 'encapsulate',
 +
'options': {
 +
'pre': 'Rendered image uses {{term|SDR}} color space. In-game {{term|HDR}} option refers only to {{term|HDR Rendering}}.',
 +
}
 +
},
 +
'label': 'HDR Rendering only'
 +
},
 +
{
 +
'action': {
 +
'type': 'encapsulate',
 +
'options': {
 +
'pre': '{{Abandoned Early Access|ref=<ref name="last update">{{Refsnip|url=https://steamdb.info/depot/0/|title=GAME TITLE on SteamDB|date=December 24, 2018|snippet=Last updated on October 14, 2014}}</ref>}}',
 +
}
 +
},
 +
'label': 'Abandoned Early Access'
 +
},
 +
{
 +
'action': {
 +
'type': 'encapsulate',
 +
'options': {
 +
'pre': 'Use [https://github.com/ThirteenAG/d3d9-wrapper/releases ThirteenAG\'s D3D9 Wrapper].',
 +
}
 +
},
 +
'label': 'ThirteenAG D3D9'
 +
},
 +
{
 +
'action': {
 +
'type': 'encapsulate',
 +
'options': {
 +
'pre': '{{Infobox game/row/engine|Unity|ref=<ref name="engineversion">{{Refcheck|user=Suicide_machine|date=2019-04-18}}</ref>|build=2018.3.11.25377}}',
 +
}
 +
},
 +
'label': 'Unity Version'
 +
}
 +
]
 
}
 
}
 
}
 
}
 
}
 
}
 
}
 
}
} );
+
});
 
};
 
};
+
 
/* 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 */
 
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' ).then( function () {
// This can be the string "0" if the user disabled the preference ([[bugzilla:52542#c3]])
+
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 && mw.user.options.get( 'showtoolbar' ) == 1 ) {
+
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
 
$.when(
 
$.when(
mw.loader.using( 'ext.wikiEditor.toolbar' ),
+
mw.loader.using( 'ext.wikiEditor' ), $.ready
$.ready
 
 
).then( customizeToolbar );
 
).then( customizeToolbar );
 
}
 
}
 
} );
 
} );
 
}
 
}
 
+
// </nowiki>
function addAnchorInHeaders() {
 
$('span.mw-headline', '#mw-content-text').each(function() {
 
var $this = $(this);
 
if ($this.attr('id') !== undefined) {
 
$('<span class="mw-linkhere"></span>').text(' • ').append(
 
$('<a></a>').text('Link').attr({title: 'Link', href: '#'+$this.attr('id')})
 
).appendTo(this);
 
}
 
});
 
}
 
 
 
$(addAnchorInHeaders);
 

Latest revision as of 21:44, 18 November 2020

// <nowiki>
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=\n',
										'peri': '{{List/row|row=Text here}}',
										'post': '\n}}'
									}
								},
								'label': 'List'
							},
							{
								'action': {
								'type': 'encapsulate',
									'options': {
										'pre': '{{List/row|row=',
										'peri': 'Text here',
										'post': '}}'
									}
								},
								'label': 'List/row'
							}
						]
					},
					'section-common-lines':
					{
						'label': 'Common lines',
						'layout': 'characters',
						'characters': [
							{
								'action': {
								'type': 'encapsulate',
									'options': {
										'pre': 'Enable windowed mode and use the <code>-popupwindow</code> [[Glossary:Command line arguments|parameter]].',
									}
								},
								'label': 'Unity\'s popupwindow'
							},
							{
								'action': {
								'type': 'encapsulate',
									'options': {
										'pre': 'Start the game with <code>+windowed 1</code> [[Glossary:Command line arguments|parameter]].',
									}
								},
								'label': 'LithTech Windowed'
							},
							{
								'action': {
								'type': 'encapsulate',
									'options': {
										'pre': 'Rendered image uses {{term|SDR}} color space. In-game {{term|HDR}} option refers only to {{term|HDR Rendering}}.',
									}
								},
								'label': 'HDR Rendering only'
							},
							{
								'action': {
								'type': 'encapsulate',
									'options': {
										'pre': '{{Abandoned Early Access|ref=<ref name="last update">{{Refsnip|url=https://steamdb.info/depot/0/|title=GAME TITLE on SteamDB|date=December 24, 2018|snippet=Last updated on October 14, 2014}}</ref>}}',
									}
								},
								'label': 'Abandoned Early Access'
							},
							{
								'action': {
								'type': 'encapsulate',
									'options': {
										'pre': 'Use [https://github.com/ThirteenAG/d3d9-wrapper/releases ThirteenAG\'s D3D9 Wrapper].',
									}
								},
								'label': 'ThirteenAG D3D9'
							},
							{
								'action': {
								'type': 'encapsulate',
									'options': {
										'pre': '{{Infobox game/row/engine|Unity|ref=<ref name="engineversion">{{Refcheck|user=Suicide_machine|date=2019-04-18}}</ref>|build=2018.3.11.25377}}',
									}
								},
								'label': 'Unity Version'
							}
						]
					}
				}
			}
		}
	});
};

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