No edit summary |
No edit summary |
||
Line 128: | Line 128: | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: "<abbr title=\"masculine gender\">''m''</abbr>", | pre: "<abbr title=\"masculine gender\">''m''</abbr>[[Category:Masculine gender Hausa nouns]]", | ||
ownline: false | ownline: false | ||
} | } | ||
Line 149: | Line 149: | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: "<abbr title=\"feminine gender\">''f''</abbr>", | pre: "<abbr title=\"feminine gender\">''f''</abbr>[[Category:Feminine gender Hausa nouns]]", | ||
ownline: false | ownline: false | ||
} | } |
Revision as of 16:39, 30 January 2016
var customizeToolbar = function() {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"strikethrough": {
label: 'Strike',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/3/30/Btn_toolbar_rayer.png',
action: {
type: 'encapsulate',
options: {
pre: "<s>",
post: "</s>"
}
}
}
}
});
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"hline": {
label: 'Horizontal line',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/0/0d/Button_hr.png',
action: {
type: 'encapsulate',
options: {
pre: "----",
ownline: true
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"hline": {
label: 'Special Hausa Letters',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/b/b7/Implosive_b.png',
action: {
type: 'encapsulate',
options: {
pre: "Ɓɓ",
ownline: false
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"hline": {
label: 'Special Hausa Letters',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/RomanD-01.png/25px-RomanD-01.png',
action: {
type: 'encapsulate',
options: {
pre: "Ɗɗ",
ownline: false
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"hline": {
label: 'Special Hausa Letters',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/thumb/d/dc/K_with_hook_-_uppercase_and_lowercase.svg/220px-K_with_hook_-_uppercase_and_lowercase.svg.png',
action: {
type: 'encapsulate',
options: {
pre: "Ƙƙ",
ownline: false
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"hline": {
label: 'HTML Image',
type: 'button',
icon: '//hausafilms.tv/lib/images/toolbar/image.png',
action: {
type: 'encapsulate',
options: {
pre: "<html><img align=right src=\"FILE.jpg\"/></html>",
ownline: true
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"hline": {
label: 'Masculine Gender',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Mars_symbol.svg/50px-Mars_symbol.svg.png',
action: {
type: 'encapsulate',
options: {
pre: "<abbr title=\"masculine gender\">''m''</abbr>[[Category:Masculine gender Hausa nouns]]",
ownline: false
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"hline": {
label: 'Feminine Gender',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/thumb/6/66/Venus_symbol.svg/50px-Venus_symbol.svg.png',
action: {
type: 'encapsulate',
options: {
pre: "<abbr title=\"feminine gender\">''f''</abbr>[[Category:Feminine gender Hausa nouns]]",
ownline: false
}
}
}
}
} );
};
/* 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 );