No edit summary |
No edit summary |
||
Line 13: | Line 13: | ||
var toggleWidth = containers[0].style.maxWidth === "none" ? "15em" : "none"; | var toggleWidth = containers[0].style.maxWidth === "none" ? "15em" : "none"; | ||
sessionStorage.setItem("setToggleWidth", toggleWidth); | sessionStorage.setItem("setToggleWidth", toggleWidth); | ||
for (var container | for (var container of containers) { | ||
container.style.maxWidth = toggleWidth; | container.style.maxWidth = toggleWidth; | ||
} | } |
Revision as of 14:19, 14 July 2023
/** * TemplateScript adds configurable templates and scripts to the sidebar, and adds an example regex editor. * @see https://meta.wikimedia.org/wiki/TemplateScript * @update-token [[File:Pathoschild/templatescript.js]] */ // <nowiki> mw.config.set('userjs-templatescript', { regexEditor: false }); $.ajax('//themidnight.wiki/templatescript.js', { dataType:'script', cache:true }).then(function() { pathoschild.TemplateScript.add({ name:'Toggle width', forActions: '*', script: function myFunction() { var toggleWidth = containers[0].style.maxWidth === "none" ? "15em" : "none"; sessionStorage.setItem("setToggleWidth", toggleWidth); for (var container of containers) { container.style.maxWidth = toggleWidth; } } }); }); // </nowiki>