User:Dayaanjali/monobook.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .css page for this skin can be added at User:Dayaanjali/monobook.css. |
// [[User:Lupin/popups.js]]
importScript('User:Lupin/popups.js');
/**
==BEGIN Dynamic Navigation Bars (experimantal)==
Modified from the NavBars in [[Mediawiki:Monobook.js]] to work with vfd divs. This will hide closed discussions in AFD/AFC pages, but
allow you to toggle them, and will show them by default in the AFD subpages.
**/
// set up the words in your language
//var NavigationBarHide = '[ Hide ]';
//var NavigationBarShow = '[ Show ]';
// set up max count of Navigation Bars on page,
// if there are more, all will be hidden
// NavigationBarShowDefault = 0; // all bars will be hidden
// NavigationBarShowDefault = 1; // on pages with more than 1 bar all bars will be hidden
var vfd_NavigationBarShowDefault = 1;
/**
===toggle===
**/
// shows and hides content and picture (if available) of navigation bars
// Parameters:
// indexNavigationBar: the index of navigation bar to be toggled
function vfd_toggleNavigationBar(indexNavigationBar)
{
var NavToggle = document.getElementById("vfd_NavToggle" + indexNavigationBar);
var NavFrame = document.getElementById("vfd_NavFrame" + indexNavigationBar);
if (!NavFrame || !NavToggle) {
return false;
}
// if shown now
if (NavToggle.firstChild.data == NavigationBarHide) {
for (
var NavChild = NavFrame.firstChild;
NavChild != null;
NavChild = NavChild.nextSibling
) {
if (NavChild.style && (NavChild.className != 'vfd_NavToggle')) {
// } else {
NavChild.style.display = 'none';
}
}
NavToggle.firstChild.data = NavigationBarShow;
// if hidden now
} else if (NavToggle.firstChild.data == NavigationBarShow) {
for (
var NavChild = NavFrame.firstChild;
NavChild != null;
NavChild = NavChild.nextSibling
) {
if (NavChild.style) {
NavChild.style.display = 'block';
}
}
NavToggle.firstChild.data = NavigationBarHide;
}
}
/**
===create===
**/
// adds show/hide-button to navigation bars
function vfd_createNavigationBarToggleButton()
{
var indexNavigationBar = 0;
// iterate over all < div >-elements
for(
var i=0;
NavFrame = document.getElementsByTagName("div")[i];
i++
) {
// if found a navigation bar
if (NavFrame.className == "boilerplate metadata vfd") {
indexNavigationBar++;
var NavToggle = document.createElement("a");
NavToggle.className = 'vfd_NavToggle';
NavToggle.setAttribute('id', 'vfd_NavToggle' + indexNavigationBar);
NavToggle.setAttribute('href', 'javascript:vfd_toggleNavigationBar(' + indexNavigationBar + ');');
var NavToggleText = document.createTextNode(NavigationBarHide);
NavToggle.appendChild(NavToggleText);
// attach the toggle link
NavFrame.appendChild(NavToggle);
NavFrame.setAttribute('id', 'vfd_NavFrame' + indexNavigationBar);
}
}
// if more Navigation Bars found than Default: hide all
if (vfd_NavigationBarShowDefault < indexNavigationBar) {
for(
var i=1;
i<=indexNavigationBar;
i++
) {
vfd_toggleNavigationBar(i);
}
}
}
addOnloadHook(vfd_createNavigationBarToggleButton);
// END Dynamic Navigation Bars
// ===============================================