MediaWiki:Gadget-TemplateScript.js: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 11: Line 11:
forActions: '*',
forActions: '*',
script: function myFunction() {
script: function myFunction() {
    var toggleWidth = containers[0].style.maxWidth === "none" ? "15em" : "none";
  var x = document.getElementsByClassName("ts-inner");
     sessionStorage.setItem("setToggleWidth", toggleWidth);
  for (i in x) {
  for (let container of containers) {
  if (x[i].style.maxWidth === "none") {
      container.style.maxWidth = toggleWidth;  
     x[i].style.maxWidth = "115em";
  }
  } else {
    x[i].style.maxWidth = "none";
  }
}
}
}
});
});
});
});
// </nowiki>
// </nowiki>

Revision as of 15:13, 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 x = document.getElementsByClassName("ts-inner");
  for (i in x) {
  if (x[i].style.maxWidth === "none") {
    x[i].style.maxWidth = "115em";
  } else {
    x[i].style.maxWidth = "none";
  }
}
}
});
});
// </nowiki>