MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
add U+2605 (Black Star) and U+2606 (White Star) to Symbols in the editing toolbar |
+ flat, natural, and sharp signs |
||
| (One intermediate revision by the same user not shown) | |||
| Line 8: | Line 8: | ||
$( '#wpTextbox1' ).on( 'wikiEditor-toolbar-buildSection-characters', function (event, section) { | $( '#wpTextbox1' ).on( 'wikiEditor-toolbar-buildSection-characters', function (event, section) { | ||
/* Description of symbols: | /* Description of symbols: | ||
U+22C5, Dot Operator (⋅) | |||
U+2605, Black Star (★) | U+2605, Black Star (★) | ||
U+2606, White Star (☆) | U+2606, White Star (☆) | ||
U+266D, Music Flat Sign (♭) | |||
U+266E, Music Natural Sign (♮) | |||
U+266F, Music Sharp Sign (♯) | |||
*/ | */ | ||
section.pages.symbols.characters.push('\u2605', '\u2606'); | section.pages.symbols.characters.push( | ||
'\u22c5', '\u2605', '\u2606', '\u266d', '\u266e', '\u266f'); | |||
}); | }); | ||
}); | }); | ||
Latest revision as of 05:53, 7 August 2026
/* Any JavaScript here will be loaded for all users on every page load. */
/* Add single characters to the Symbols section of the editing toolbar */
/* Based on code found at:
https://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization ..
#Add_characters_to_an_existing_special_characters_page */
$(function() {
$( '#wpTextbox1' ).on( 'wikiEditor-toolbar-buildSection-characters', function (event, section) {
/* Description of symbols:
U+22C5, Dot Operator (⋅)
U+2605, Black Star (★)
U+2606, White Star (☆)
U+266D, Music Flat Sign (♭)
U+266E, Music Natural Sign (♮)
U+266F, Music Sharp Sign (♯)
*/
section.pages.symbols.characters.push(
'\u22c5', '\u2605', '\u2606', '\u266d', '\u266e', '\u266f');
});
});