MediaWiki:Common.js: Difference between revisions

From Yogstation-13
Jump to navigation Jump to search
(Fixes tooltips on firefox for real now)
(No difference)

Revision as of 21:41, 27 July 2022

/* Any JavaScript here will be loaded for all users on every page load. */


/* Firefox tooltip patch. Forces a reflow or something */
if($(".tooltip").length) {
  document.styleSheets[0].insertRule(".tooltiptext {top:0}");
  document.styleSheets[0].deleteRule(0);
}