View source for MediaWiki:Gadget-CollapseAllButton.js
From Space Station 14 Wiki
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
/** Class name of an element that holds a collapse all button. */
const collapseAllButtonContainerClass = "collapsible-toggle-container";
/** Class name of an actual collapse all button. */
const collapseAllButtonClass = "mw-collapsible-toggle";
/** Data attribute on the collapse all button container element,
* that specifies a class name for a collapsable elements container that the collapse all button shall target. */
const collapsibleContainerDataAttr = "data-target-class";
/** The initial part of a custom toggle class name. */
const customToggleClassPrefix = "mw-customtoggle";
/** Class name for collapsible elements. */
const collapsibleClass = "mw-collapsible";
/** Class name for collapsed elements. */
const collapsedClass = "mw-collapsed";
const logPrefix = "Gadget-ExpandAllReagents"
000
1:0
Return to MediaWiki:Gadget-CollapseAllButton.js.