MediaWiki:Common.js: Difference between revisions

From Han Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 8: Line 8:
'customtags': {
'customtags': {
'type': 'toolbar', // Can also be 'booklet'
'type': 'toolbar', // Can also be 'booklet'
'label': 'Emoticons'
'label': 'Custom tags'
// or 'labelMsg': 'section-emoticons-label' for a localized label
// or 'labelMsg': 'section-emoticons-label' for a localized label
}
}
Line 14: Line 14:
} );
} );


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'emoticons',
'groups': {
'faces': {
'label': 'Tags' // or use labelMsg for a localized label, see above
}
}
} );


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
Line 19: Line 27:
'group': 'faces',
'group': 'faces',
'tools': {
'tools': {
'smile': {
'blockhanja': {
label: 'Smile!', // or use labelMsg for a localized label, see above
label: 'blockhanja',
type: 'button',
icon: '//wiki.michaelhan.net/private/assets/tag-blockhanja.png',
action: {
type: 'encapsulate',
options: {
pre: '<span class="blockhanja">',
post: '</span>'
}
}
},
'mw-geshi': {
label: 'mw-geshi',
type: 'button',
icon: '//wiki.michaelhan.net/private/assets/tag-mw-geshi.png',
action: {
type: 'encapsulate',
options: {
pre: '<div class="mw-geshi">',
post: "</div>"
}
}
},
'code': {
label: 'code',
type: 'button',
icon: '//wiki.michaelhan.net/private/assets/tag-code.png',
action: {
type: 'encapsulate',
options: {
pre: "<code>",
post: "</code>"
}
}
},
'package': {
label: 'package',
type: 'button',
icon: '//wiki.michaelhan.net/private/assets/tag-package.png',
action: {
type: 'encapsulate',
options: {
pre: '<span class="package">',
post: "</span>"
}
}
},
'shellpath': {
label: 'shell/path',
type: 'button',
icon: '//wiki.michaelhan.net/private/assets/tag-shell-path.png',
action: {
type: 'encapsulate',
options: {
pre: '<span class="shell">',
post: "</span>"
}
}
},
'clifull': {
label: 'cli-flushed',
type: 'button',
icon: '//wiki.michaelhan.net/private/assets/tag-cli.png',
action: {
type: 'encapsulate',
options: {
pre: '<div class="cli">',
post: "</div>"
}
}
},
'outputfull': {
label: 'output-flushed',
type: 'button',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',
icon: '//wiki.michaelhan.net/private/assets/tag-output.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: ":)" // text to be inserted
pre: '<pre class="output">',
post: "</pre>"
}
}
}
}

Revision as of 20:54, 2 July 2016

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

// added for customizing WikiEditor toolbar

var customizeToolbar = function() {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'sections': {
		'customtags': {
			'type': 'toolbar', // Can also be 'booklet'
			'label': 'Custom tags'
			// or 'labelMsg': 'section-emoticons-label' for a localized label
		}
	}
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'emoticons',
	'groups': {
		'faces': {
			'label': 'Tags' // or use labelMsg for a localized label, see above
		}
	}
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'customtags',
	'group': 'faces',
	'tools': {
		'blockhanja': {
			label: 'blockhanja',
			type: 'button',
			icon: '//wiki.michaelhan.net/private/assets/tag-blockhanja.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<span class="blockhanja">',
					post: '</span>'
				}
			}
		},
		'mw-geshi': {
			label: 'mw-geshi',
			type: 'button',
			icon: '//wiki.michaelhan.net/private/assets/tag-mw-geshi.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<div class="mw-geshi">',
					post: "</div>"
				}
			}
		},
		'code': {
			label: 'code',
			type: 'button',
			icon: '//wiki.michaelhan.net/private/assets/tag-code.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "<code>",
					post: "</code>"
				}
			}
		},
		'package': {
			label: 'package',
			type: 'button',
			icon: '//wiki.michaelhan.net/private/assets/tag-package.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<span class="package">',
					post: "</span>"
				}
			}
		},
		'shellpath': {
			label: 'shell/path',
			type: 'button',
			icon: '//wiki.michaelhan.net/private/assets/tag-shell-path.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<span class="shell">',
					post: "</span>"
				}
			}
		},
		'clifull': {
			label: 'cli-flushed',
			type: 'button',
			icon: '//wiki.michaelhan.net/private/assets/tag-cli.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<div class="cli">',
					post: "</div>"
				}
			}
		},
		'outputfull': {
			label: 'output-flushed',
			type: 'button',
			icon: '//wiki.michaelhan.net/private/assets/tag-output.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<pre class="output">',
					post: "</pre>"
				}
			}
		}
	}
} );

};

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