More languages
More actions
m (Attempting code which removes "Main page" option from the toggle menu while in the Main page itself) Tag: Reverted |
Tag: Undo |
||
Line 13: | Line 13: | ||
.addClass('citizen-ui-icon') | .addClass('citizen-ui-icon') | ||
switch ($a.text) { | switch ($a.text) { | ||
case "Library": | case "Library": | ||
$span.addClass('prolewiki-ui-icon-library') | $span.addClass('prolewiki-ui-icon-library') |
Revision as of 14:07, 18 June 2023
/* All JavaScript here will be loaded for users of the Citizen skin */
"use strict";
/**
* Adds icons for the Citizen skin toggle menu
*
**/
(function($, mw) {
var $ul = $('#p-Navigation').children()[1]; // This selects the <ul> list of elements
for (var i=0;i<$ul.children.length;i++) {
var $a = $ul.children[i].children[0];
var $span = $('<span>').text("")
.addClass('citizen-ui-icon')
switch ($a.text) {
case "Library":
$span.addClass('prolewiki-ui-icon-library')
$a.prepend($span[0]);
break;
case "Wanted pages":
$span.addClass('prolewiki-ui-icon-wanted')
$a.prepend($span[0]);
break;
case "Recruitment":
$span.addClass('prolewiki-ui-icon-recruitment');
$a.prepend($span[0]);
break;
case "Special pages":
$span.addClass('prolewiki-ui-icon-special')
$a.prepend($span[0]);
break;
case "Upload file":
$span.addClass('prolewiki-ui-icon-upload')
$a.prepend($span[0]);
break;
}
}
}(jQuery, mediaWiki));
//</nowiki>